[][src]Struct metrix::TelemetryTransmitter

pub struct TelemetryTransmitter<L> { /* fields omitted */ }

Transmits Observations to the backend

This struct does not implement the Sync trait and can therefore not be shared between threads. See synced() method.

Methods

impl<L> TelemetryTransmitter<L> where
    L: Send + 'static, 
[src]

pub fn synced(&self) -> TelemetryTransmitterSync<L>[src]

Get a TelemetryTransmitterSync.

Trait Implementations

impl<L> TransmitsTelemetryData<L> for TelemetryTransmitter<L>[src]

impl<L: Clone> Clone for TelemetryTransmitter<L>[src]

Auto Trait Implementations

impl<L> Send for TelemetryTransmitter<L> where
    L: Send

impl<L> Sync for TelemetryTransmitter<L> where
    L: Send

impl<L> Unpin for TelemetryTransmitter<L>

impl<L> UnwindSafe for TelemetryTransmitter<L>

impl<L> RefUnwindSafe for TelemetryTransmitter<L>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,