pub struct RunningProfilerThread { /* private fields */ }Expand description
A handle to a running profiler, running on a separate thread.
Currently just allows for stopping the profiler.
Dropping this handle will request that the profiler will stop.
Implementations§
Source§impl RunningProfilerThread
impl RunningProfilerThread
Sourcepub fn stop(self)
pub fn stop(self)
Request that the current profiler stops and wait until it exits.
This will cause the currently-pending profile information to be flushed.
After this function returns, it is correct and safe to spawn a new Profiler, possibly with a different configuration. Therefore, this function can be used to “reconfigure” a profiler by stopping it and then starting a new one with a different configuration.
Auto Trait Implementations§
impl Freeze for RunningProfilerThread
impl !RefUnwindSafe for RunningProfilerThread
impl Send for RunningProfilerThread
impl Sync for RunningProfilerThread
impl Unpin for RunningProfilerThread
impl !UnwindSafe for RunningProfilerThread
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.