pub struct TracingComplete {
pub method: TracingCompleteMethod,
pub params: TracingCompleteParams,
}Expand description
Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events. tracingComplete
Fields§
§method: TracingCompleteMethod§params: TracingCompleteParamsImplementations§
Source§impl TracingComplete
impl TracingComplete
pub const IDENTIFIER: &'static str = "Tracing.tracingComplete"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TracingComplete
impl Clone for TracingComplete
Source§fn clone(&self) -> TracingComplete
fn clone(&self) -> TracingComplete
Returns a duplicate 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 TracingComplete
impl Debug for TracingComplete
Source§impl<'de> Deserialize<'de> for TracingComplete
impl<'de> Deserialize<'de> for TracingComplete
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<TracingComplete> for BrowserProtocolEvents
impl From<TracingComplete> for BrowserProtocolEvents
Source§fn from(v: TracingComplete) -> Self
fn from(v: TracingComplete) -> Self
Converts to this type from the input type.
Source§impl From<TracingComplete> for Event
impl From<TracingComplete> for Event
Source§fn from(v: TracingComplete) -> Self
fn from(v: TracingComplete) -> Self
Converts to this type from the input type.
Source§impl From<TracingComplete> for TracingEvents
impl From<TracingComplete> for TracingEvents
Source§fn from(v: TracingComplete) -> Self
fn from(v: TracingComplete) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TracingComplete
impl PartialEq for TracingComplete
Source§impl Serialize for TracingComplete
impl Serialize for TracingComplete
Source§impl TryFrom<BrowserProtocolEvents> for TracingComplete
impl TryFrom<BrowserProtocolEvents> for TracingComplete
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <TracingComplete as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <TracingComplete as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for TracingComplete
impl TryFrom<Event> for TracingComplete
Source§impl TryFrom<TracingEvents> for TracingComplete
impl TryFrom<TracingEvents> for TracingComplete
Source§type Error = TracingEvents
type Error = TracingEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: TracingEvents,
) -> Result<Self, <TracingComplete as TryFrom<TracingEvents>>::Error>
fn try_from( e: TracingEvents, ) -> Result<Self, <TracingComplete as TryFrom<TracingEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for TracingComplete
Auto Trait Implementations§
impl Freeze for TracingComplete
impl RefUnwindSafe for TracingComplete
impl Send for TracingComplete
impl Sync for TracingComplete
impl Unpin for TracingComplete
impl UnsafeUnpin for TracingComplete
impl UnwindSafe for TracingComplete
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more