Struct chromiumoxide::cdp::browser_protocol::tracing::EventTracingComplete
source · pub struct EventTracingComplete {
pub data_loss_occurred: bool,
pub stream: Option<StreamHandle>,
pub trace_format: Option<StreamFormat>,
pub stream_compression: Option<StreamCompression>,
}Expand description
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: boolIndicates 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§
source§impl EventTracingComplete
impl EventTracingComplete
pub const IDENTIFIER: &'static str = "Tracing.tracingComplete"
Trait Implementations§
source§impl Clone for EventTracingComplete
impl Clone for EventTracingComplete
source§fn clone(&self) -> EventTracingComplete
fn clone(&self) -> EventTracingComplete
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for EventTracingComplete
impl Debug for EventTracingComplete
source§impl<'de> Deserialize<'de> for EventTracingComplete
impl<'de> Deserialize<'de> for EventTracingComplete
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<EventTracingComplete, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<EventTracingComplete, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<EventTracingComplete> for CdpEvent
impl From<EventTracingComplete> for CdpEvent
source§fn from(el: EventTracingComplete) -> CdpEvent
fn from(el: EventTracingComplete) -> CdpEvent
Converts to this type from the input type.
source§impl IntoEventKind for EventTracingComplete
impl IntoEventKind for EventTracingComplete
source§fn event_kind() -> EventKindwhere
EventTracingComplete: Sized + 'static,
fn event_kind() -> EventKindwhere EventTracingComplete: Sized + 'static,
What kind of event this type is
source§impl Method for EventTracingComplete
impl Method for EventTracingComplete
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl MethodType for EventTracingComplete
impl MethodType for EventTracingComplete
source§impl PartialEq<EventTracingComplete> for EventTracingComplete
impl PartialEq<EventTracingComplete> for EventTracingComplete
source§fn eq(&self, other: &EventTracingComplete) -> bool
fn eq(&self, other: &EventTracingComplete) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for EventTracingComplete
impl Serialize for EventTracingComplete
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more