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