Struct sc_telemetry::TelemetryWorker
source · [−]pub struct TelemetryWorker { /* private fields */ }
Expand description
Telemetry worker.
It should run as a background task using the TelemetryWorker::run
method. This method
will consume the object and any further attempts of initializing a new telemetry through its
handle will fail (without being fatal).
Implementations
sourceimpl TelemetryWorker
impl TelemetryWorker
sourcepub fn handle(&self) -> TelemetryHandle
pub fn handle(&self) -> TelemetryHandle
Get a new TelemetryHandle
.
This is used when you want to register with the TelemetryWorker
.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for TelemetryWorker
impl Send for TelemetryWorker
impl Sync for TelemetryWorker
impl Unpin for TelemetryWorker
impl !UnwindSafe for TelemetryWorker
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more