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