Struct cdp::runtime::ConsoleApiCalledEvent [] [src]

pub struct ConsoleApiCalledEvent<'a> {
    pub ty: ConsoleApiCalledEventType,
    pub args: Vec<RemoteObject<'a>>,
    pub execution_context_id: ExecutionContextId,
    pub timestamp: Timestamp,
    pub stack_trace: Option<StackTrace<'a>>,
    pub context: Option<Cow<'a, str>>,
}

Issued when console API was called.

Event Runtime.consoleAPICalled

Domain Module: cdp::runtime
Event Struct: cdp::runtime::ConsoleApiCalledEvent

Fields

Type of the call.

Call arguments.

Identifier of the context where the call was made.

Call timestamp.

Stack trace captured when the call was made.

[Experimental] Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context.

Trait Implementations

impl<'a> Clone for ConsoleApiCalledEvent<'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 ConsoleApiCalledEvent<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for ConsoleApiCalledEvent<'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 !=.

impl<'a> CdpEvent for ConsoleApiCalledEvent<'a>
[src]

EVENT_NAME: &'static str = "Runtime.consoleAPICalled"

impl<'a> SerializeCdpEvent for ConsoleApiCalledEvent<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpEvent<'de> for ConsoleApiCalledEvent<'a>
[src]

[src]