Trait tracing_fluentd::MakeWriter[][src]

pub trait MakeWriter: 'static + Send {
    type Writer: Write;
    fn make(&self) -> Result<Self::Writer>;
}
Expand description

Describers creation of sink for tracing record.

Associated Types

Writer type

Required methods

Creates instance of Writer.

It should be noted that it is ok to cache Writer.

In case of failure working with writer, subscriber shall retry at least once

Implementors