[][src]Struct opentelemetry_zipkin::Exporter

pub struct Exporter { /* fields omitted */ }

Zipkin span exporter

Implementations

impl Exporter[src]

pub fn from_config(config: ExporterConfig) -> Self[src]

Creates new Exporter from a given ExporterConfig.

Trait Implementations

impl Debug for Exporter[src]

impl SpanExporter for Exporter[src]

fn export(&self, batch: Vec<Arc<SpanData>>) -> ExportResult[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, 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>,