Trait tracing_fluentd::MakeWriter
source · [−]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
Required methods
Implementations on Foreign Types
sourceimpl MakeWriter for IntoIter<SocketAddr>
impl MakeWriter for IntoIter<SocketAddr>
sourceimpl MakeWriter for &'static str
impl MakeWriter for &'static str
Creates writer by resolving address from provided string.
sourceimpl MakeWriter for (&'static str, u16)
impl MakeWriter for (&'static str, u16)
Creates writer by resolving address from provided string and port.