Struct chromiumoxide_cdp::cdp::js_protocol::runtime::ExceptionDetails[][src]

pub struct ExceptionDetails {
    pub exception_id: i64,
    pub text: String,
    pub line_number: i64,
    pub column_number: i64,
    pub script_id: Option<ScriptId>,
    pub url: Option<String>,
    pub stack_trace: Option<StackTrace>,
    pub exception: Option<RemoteObject>,
    pub execution_context_id: Option<ExecutionContextId>,
}
Expand description

Detailed information about exception (or error) that was thrown during script compilation or execution. ExceptionDetails

Fields

exception_id: i64

Exception id.

text: String

Exception text, which should be used together with exception object when available.

line_number: i64

Line number of the exception location (0-based).

column_number: i64

Column number of the exception location (0-based).

script_id: Option<ScriptId>

Script ID of the exception location.

url: Option<String>

URL of the exception location, to be used when the script was not reported.

stack_trace: Option<StackTrace>

JavaScript stack trace if available.

exception: Option<RemoteObject>

Exception object if available.

execution_context_id: Option<ExecutionContextId>

Identifier of the context where exception happened.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.