pub trait MakeWriter: 'static + Send {
type Writer: Write;
// Required method
fn make(&self) -> Result<Self::Writer>;
}
Expand description
Describers creation of sink for tracing
record.
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Source§impl MakeWriter for &'static str
Creates writer by resolving address from provided string.
impl MakeWriter for &'static str
Creates writer by resolving address from provided string.
Source§impl MakeWriter for (&'static str, u16)
Creates writer by resolving address from provided string and port.
impl MakeWriter for (&'static str, u16)
Creates writer by resolving address from provided string and port.