Enum profile_traits::time::ProfilerMsg
source · pub enum ProfilerMsg {
Time((ProfilerCategory, Option<TimerMetadata>), (CrossProcessInstant, CrossProcessInstant)),
Get((ProfilerCategory, Option<TimerMetadata>), IpcSender<ProfilerData>),
Print,
BlockedLayoutQuery(String),
Exit(IpcSender<()>),
}
Variants§
Time((ProfilerCategory, Option<TimerMetadata>), (CrossProcessInstant, CrossProcessInstant))
Normal message used for reporting time
Get((ProfilerCategory, Option<TimerMetadata>), IpcSender<ProfilerData>)
Message used to get time spend entries for a particular ProfilerBuckets (in nanoseconds)
Message used to force print the profiling metrics
BlockedLayoutQuery(String)
Report a layout query that could not be processed immediately for a particular URL.
Exit(IpcSender<()>)
Tells the profiler to shut down.
Trait Implementations§
source§impl Clone for ProfilerMsg
impl Clone for ProfilerMsg
source§fn clone(&self) -> ProfilerMsg
fn clone(&self) -> ProfilerMsg
Returns a copy 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 ProfilerMsg
impl Debug for ProfilerMsg
source§impl<'de> Deserialize<'de> for ProfilerMsg
impl<'de> Deserialize<'de> for ProfilerMsg
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
Auto Trait Implementations§
impl Freeze for ProfilerMsg
impl !RefUnwindSafe for ProfilerMsg
impl Send for ProfilerMsg
impl !Sync for ProfilerMsg
impl Unpin for ProfilerMsg
impl UnwindSafe for ProfilerMsg
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