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

Implementations on Foreign Types

Creates writer by resolving address from provided string.

Creates writer by resolving address from provided string and port.

Implementors