pub struct DataCollected {
pub method: DataCollectedMethod,
pub params: DataCollectedParams,
}Expand description
Contains a bucket of collected trace events. When tracing is stopped collected events will be sent as a sequence of dataCollected events followed by tracingComplete event. dataCollected
Fields§
§method: DataCollectedMethod§params: DataCollectedParamsImplementations§
Source§impl DataCollected
impl DataCollected
pub const IDENTIFIER: &'static str = "Tracing.dataCollected"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DataCollected
impl Clone for DataCollected
Source§fn clone(&self) -> DataCollected
fn clone(&self) -> DataCollected
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 DataCollected
impl Debug for DataCollected
Source§impl<'de> Deserialize<'de> for DataCollected
impl<'de> Deserialize<'de> for DataCollected
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<DataCollected> for BrowserProtocolEvents
impl From<DataCollected> for BrowserProtocolEvents
Source§fn from(v: DataCollected) -> Self
fn from(v: DataCollected) -> Self
Converts to this type from the input type.
Source§impl From<DataCollected> for Event
impl From<DataCollected> for Event
Source§fn from(v: DataCollected) -> Self
fn from(v: DataCollected) -> Self
Converts to this type from the input type.
Source§impl From<DataCollected> for TracingEvents
impl From<DataCollected> for TracingEvents
Source§fn from(v: DataCollected) -> Self
fn from(v: DataCollected) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DataCollected
impl PartialEq for DataCollected
Source§impl Serialize for DataCollected
impl Serialize for DataCollected
Source§impl TryFrom<BrowserProtocolEvents> for DataCollected
impl TryFrom<BrowserProtocolEvents> for DataCollected
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, <DataCollected as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DataCollected as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for DataCollected
impl TryFrom<Event> for DataCollected
Source§impl TryFrom<TracingEvents> for DataCollected
impl TryFrom<TracingEvents> for DataCollected
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, <DataCollected as TryFrom<TracingEvents>>::Error>
fn try_from( e: TracingEvents, ) -> Result<Self, <DataCollected as TryFrom<TracingEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for DataCollected
Auto Trait Implementations§
impl Freeze for DataCollected
impl RefUnwindSafe for DataCollected
impl Send for DataCollected
impl Sync for DataCollected
impl Unpin for DataCollected
impl UnsafeUnpin for DataCollected
impl UnwindSafe for DataCollected
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