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