[][src]Struct opentelemetry_zipkin::Exporter

pub struct Exporter { /* fields omitted */ }

Zipkin span exporter

Trait Implementations

impl Debug for Exporter[src]

impl SpanExporter for Exporter[src]

fn export<'life0, 'async_trait>(
    &'life0 self,
    batch: Vec<SpanData>
) -> Pin<Box<dyn Future<Output = ExportResult> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Export spans to Zipkin collector.

Auto Trait Implementations

impl !RefUnwindSafe for Exporter

impl Send for Exporter

impl Sync for Exporter

impl Unpin for Exporter

impl !UnwindSafe for Exporter

Blanket Implementations

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

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

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

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

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,