pub enum TracingEvents {
BufferUsage(BufferUsage),
DataCollected(DataCollected),
TracingComplete(TracingComplete),
}Variants§
Implementations§
Source§impl TracingEvents
impl TracingEvents
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TracingEvents
impl Clone for TracingEvents
Source§fn clone(&self) -> TracingEvents
fn clone(&self) -> TracingEvents
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 TracingEvents
impl Debug for TracingEvents
Source§impl<'de> Deserialize<'de> for TracingEvents
impl<'de> Deserialize<'de> for TracingEvents
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<BufferUsage> for TracingEvents
impl From<BufferUsage> for TracingEvents
Source§fn from(v: BufferUsage) -> Self
fn from(v: BufferUsage) -> 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 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 From<TracingEvents> for BrowserProtocolEvents
impl From<TracingEvents> for BrowserProtocolEvents
Source§fn from(v: TracingEvents) -> Self
fn from(v: TracingEvents) -> Self
Converts to this type from the input type.
Source§impl From<TracingEvents> for Event
impl From<TracingEvents> for Event
Source§fn from(v: TracingEvents) -> Self
fn from(v: TracingEvents) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TracingEvents
impl PartialEq for TracingEvents
Source§impl Serialize for TracingEvents
impl Serialize for TracingEvents
Source§impl TryFrom<BrowserProtocolEvents> for TracingEvents
impl TryFrom<BrowserProtocolEvents> for TracingEvents
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, <TracingEvents as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <TracingEvents as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for TracingEvents
impl TryFrom<Event> for TracingEvents
Source§impl TryFrom<TracingEvents> for BufferUsage
impl TryFrom<TracingEvents> for BufferUsage
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, <BufferUsage as TryFrom<TracingEvents>>::Error>
fn try_from( e: TracingEvents, ) -> Result<Self, <BufferUsage as TryFrom<TracingEvents>>::Error>
Performs the conversion.
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.
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 TracingEvents
Auto Trait Implementations§
impl Freeze for TracingEvents
impl RefUnwindSafe for TracingEvents
impl Send for TracingEvents
impl Sync for TracingEvents
impl Unpin for TracingEvents
impl UnsafeUnpin for TracingEvents
impl UnwindSafe for TracingEvents
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