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