pub struct Start {
pub method: StartMethod,
pub params: StartParams,
}Expand description
Start trace events collection. start
Fields§
§method: StartMethod§params: StartParamsImplementations§
Source§impl Start
impl Start
pub const IDENTIFIER: &'static str = "Tracing.start"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for Start
impl CommandResult for Start
type Result = StartResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for Start
impl<'de> Deserialize<'de> for Start
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<Start> for BrowserProtocolCommands
impl From<Start> for BrowserProtocolCommands
Source§impl From<Start> for TracingCommands
impl From<Start> for TracingCommands
Source§impl TryFrom<BrowserProtocolCommands> for Start
impl TryFrom<BrowserProtocolCommands> for Start
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, <Start as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <Start as TryFrom<BrowserProtocolCommands>>::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 Start
Auto Trait Implementations§
impl Freeze for Start
impl RefUnwindSafe for Start
impl Send for Start
impl Sync for Start
impl Unpin for Start
impl UnsafeUnpin for Start
impl UnwindSafe for Start
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