Struct chromiumoxide_cdp::cdp::browser_protocol::log::LogEntry[][src]

pub struct LogEntry {
    pub source: LogEntrySource,
    pub level: LogEntryLevel,
    pub text: String,
    pub timestamp: Timestamp,
    pub url: Option<String>,
    pub line_number: Option<i64>,
    pub stack_trace: Option<StackTrace>,
    pub network_request_id: Option<RequestId>,
    pub worker_id: Option<String>,
    pub args: Option<Vec<RemoteObject>>,
}
Expand description

Log entry. LogEntry

Fields

source: LogEntrySource

Log entry source.

level: LogEntryLevel

Log entry severity.

text: String

Logged text.

timestamp: Timestamp

Timestamp when this entry was added.

url: Option<String>

URL of the resource if known.

line_number: Option<i64>

Line number in the resource.

stack_trace: Option<StackTrace>

JavaScript stack trace.

network_request_id: Option<RequestId>

Identifier of the network request associated with this entry.

worker_id: Option<String>

Identifier of the worker associated with this entry.

args: Option<Vec<RemoteObject>>

Call arguments.

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

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

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.