pub struct StopReturn { /* private fields */ }Available on crate features
Profiler and Runtime and Debugger only.Implementations§
Methods from Deref<Target = Profile>§
Sourcepub fn nodes(&self) -> &[ProfileNode]
pub fn nodes(&self) -> &[ProfileNode]
The list of profile nodes. First item is the root node.
Sourcepub fn start_time(&self) -> f64
pub fn start_time(&self) -> f64
Profiling start timestamp in microseconds.
Sourcepub fn time_deltas(&self) -> Option<&Vec<u32>>
pub fn time_deltas(&self) -> Option<&Vec<u32>>
Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.
Trait Implementations§
Source§impl Clone for StopReturn
impl Clone for StopReturn
Source§fn clone(&self) -> StopReturn
fn clone(&self) -> StopReturn
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 StopReturn
impl Debug for StopReturn
Source§impl Deref for StopReturn
impl Deref for StopReturn
Source§impl<'de> Deserialize<'de> for StopReturn
impl<'de> Deserialize<'de> for StopReturn
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 StopReturn
impl RefUnwindSafe for StopReturn
impl Send for StopReturn
impl Sync for StopReturn
impl Unpin for StopReturn
impl UnwindSafe for StopReturn
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