Struct cdp::runtime::CallFrame [] [src]

pub struct CallFrame<'a> {
    pub function_name: Cow<'a, str>,
    pub script_id: ScriptId<'a>,
    pub url: Cow<'a, str>,
    pub line_number: i32,
    pub column_number: i32,
}

Stack entry for runtime errors and assertions.

Fields

JavaScript function name.

JavaScript script id.

JavaScript script name or url.

JavaScript script line number (0-based).

JavaScript script column number (0-based).

Trait Implementations

impl<'a> Clone for CallFrame<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for CallFrame<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for CallFrame<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.