Struct chromiumoxide::cdp::js_protocol::runtime::EventConsoleApiCalled[][src]

pub struct EventConsoleApiCalled {
    pub type: ConsoleApiCalledType,
    pub args: Vec<RemoteObject, Global>,
    pub execution_context_id: ExecutionContextId,
    pub timestamp: Timestamp,
    pub stack_trace: Option<StackTrace>,
    pub context: Option<String>,
}

Issued when console API was called. consoleAPICalled

Fields

type: ConsoleApiCalledType

Type of the call.

args: Vec<RemoteObject, Global>

Call arguments.

execution_context_id: ExecutionContextId

Identifier of the context where the call was made.

timestamp: Timestamp

Call timestamp.

stack_trace: Option<StackTrace>

Stack trace captured when the call was made. The async stack chain is automatically reported for the following call types: assert, error, trace, warning. For other types the async call chain can be retrieved using Debugger.getStackTrace and stackTrace.parentId field.

context: Option<String>

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.

Implementations

impl EventConsoleApiCalled[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for EventConsoleApiCalled[src]

impl Debug for EventConsoleApiCalled[src]

impl<'de> Deserialize<'de> for EventConsoleApiCalled[src]

impl Into<CdpEvent> for EventConsoleApiCalled[src]

impl IntoEventKind for EventConsoleApiCalled[src]

impl Method for EventConsoleApiCalled[src]

impl MethodType for EventConsoleApiCalled[src]

impl PartialEq<EventConsoleApiCalled> for EventConsoleApiCalled[src]

impl Serialize for EventConsoleApiCalled[src]

impl StructuralPartialEq for EventConsoleApiCalled[src]

impl TryFrom<CdpEvent> for EventConsoleApiCalled[src]

type Error = CdpEvent

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Event for T where
    T: SealedEvent, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,