pub struct GetTrackEventDescriptor {
pub method: GetTrackEventDescriptorMethod,
pub params: GetTrackEventDescriptorParams,
}Expand description
Return a descriptor for all available tracing categories. getTrackEventDescriptor
Fields§
§method: GetTrackEventDescriptorMethod§params: GetTrackEventDescriptorParamsImplementations§
Source§impl GetTrackEventDescriptor
impl GetTrackEventDescriptor
pub const IDENTIFIER: &'static str = "Tracing.getTrackEventDescriptor"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetTrackEventDescriptor
impl Clone for GetTrackEventDescriptor
Source§fn clone(&self) -> GetTrackEventDescriptor
fn clone(&self) -> GetTrackEventDescriptor
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 CommandResult for GetTrackEventDescriptor
impl CommandResult for GetTrackEventDescriptor
type Result = GetTrackEventDescriptorResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetTrackEventDescriptor
impl Debug for GetTrackEventDescriptor
Source§impl<'de> Deserialize<'de> for GetTrackEventDescriptor
impl<'de> Deserialize<'de> for GetTrackEventDescriptor
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<GetTrackEventDescriptor> for BrowserProtocolCommands
impl From<GetTrackEventDescriptor> for BrowserProtocolCommands
Source§fn from(v: GetTrackEventDescriptor) -> Self
fn from(v: GetTrackEventDescriptor) -> Self
Converts to this type from the input type.
Source§impl From<GetTrackEventDescriptor> for Command
impl From<GetTrackEventDescriptor> for Command
Source§fn from(v: GetTrackEventDescriptor) -> Self
fn from(v: GetTrackEventDescriptor) -> 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 PartialEq for GetTrackEventDescriptor
impl PartialEq for GetTrackEventDescriptor
Source§impl Serialize for GetTrackEventDescriptor
impl Serialize for GetTrackEventDescriptor
Source§impl TryFrom<BrowserProtocolCommands> for GetTrackEventDescriptor
impl TryFrom<BrowserProtocolCommands> for GetTrackEventDescriptor
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, <GetTrackEventDescriptor as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetTrackEventDescriptor as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetTrackEventDescriptor
impl TryFrom<Command> for GetTrackEventDescriptor
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.
impl StructuralPartialEq for GetTrackEventDescriptor
Auto Trait Implementations§
impl Freeze for GetTrackEventDescriptor
impl RefUnwindSafe for GetTrackEventDescriptor
impl Send for GetTrackEventDescriptor
impl Sync for GetTrackEventDescriptor
impl Unpin for GetTrackEventDescriptor
impl UnsafeUnpin for GetTrackEventDescriptor
impl UnwindSafe for GetTrackEventDescriptor
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