Struct chromiumoxide::cdp::browser_protocol::tracing::EventTracingComplete[][src]

pub struct EventTracingComplete {
    pub data_loss_occurred: bool,
    pub stream: Option<StreamHandle>,
    pub trace_format: Option<StreamFormat>,
    pub stream_compression: Option<StreamCompression>,
}

Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events. tracingComplete

Fields

data_loss_occurred: bool

Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around.

stream: Option<StreamHandle>

A handle of the stream that holds resulting trace data.

trace_format: Option<StreamFormat>

Trace data format of returned stream.

stream_compression: Option<StreamCompression>

Compression format of returned stream.

Implementations

impl EventTracingComplete[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for EventTracingComplete[src]

impl Debug for EventTracingComplete[src]

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

impl Into<CdpEvent> for EventTracingComplete[src]

impl IntoEventKind for EventTracingComplete[src]

impl Method for EventTracingComplete[src]

impl MethodType for EventTracingComplete[src]

impl PartialEq<EventTracingComplete> for EventTracingComplete[src]

impl Serialize for EventTracingComplete[src]

impl StructuralPartialEq for EventTracingComplete[src]

impl TryFrom<CdpEvent> for EventTracingComplete[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>,