pub struct TelemetryCore<T: Telemetry> { /* private fields */ }Expand description
Single-threaded core that owns the underlying telemetry implementation T.
All metric and event updates are serialized through this core, which runs in a dedicated thread or is driven by the host runtime.
Implementations§
Auto Trait Implementations§
impl<T> Freeze for TelemetryCore<T>where
T: Freeze,
impl<T> RefUnwindSafe for TelemetryCore<T>where
T: RefUnwindSafe,
impl<T> Send for TelemetryCore<T>where
T: Send,
impl<T> !Sync for TelemetryCore<T>
impl<T> Unpin for TelemetryCore<T>where
T: Unpin,
impl<T> UnsafeUnpin for TelemetryCore<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for TelemetryCore<T>where
T: UnwindSafe,
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