pub struct ConsoleProfileStartedParams {
pub id: String,
pub location: Location,
pub title: Option<String>,
}Expand description
Sent when new profile recording is started using console.profile() call. consoleProfileStarted
Fields§
§id: String§location: LocationLocation of console.profile().
title: Option<String>Profile title passed as an argument to console.profile().
Trait Implementations§
Source§impl Clone for ConsoleProfileStartedParams
impl Clone for ConsoleProfileStartedParams
Source§fn clone(&self) -> ConsoleProfileStartedParams
fn clone(&self) -> ConsoleProfileStartedParams
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 ConsoleProfileStartedParams
impl Debug for ConsoleProfileStartedParams
Source§impl<'de> Deserialize<'de> for ConsoleProfileStartedParams
impl<'de> Deserialize<'de> for ConsoleProfileStartedParams
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
impl StructuralPartialEq for ConsoleProfileStartedParams
Auto Trait Implementations§
impl Freeze for ConsoleProfileStartedParams
impl RefUnwindSafe for ConsoleProfileStartedParams
impl Send for ConsoleProfileStartedParams
impl Sync for ConsoleProfileStartedParams
impl Unpin for ConsoleProfileStartedParams
impl UnsafeUnpin for ConsoleProfileStartedParams
impl UnwindSafe for ConsoleProfileStartedParams
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