pub trait Append:
Debug
+ Send
+ Sync
+ 'static {
// Required methods
fn append(
&self,
record: &Record<'_>,
diags: &[Box<dyn Diagnostic>],
) -> Result<(), Error>;
fn flush(&self) -> Result<(), Error>;
}Expand description
An appender that can process log records.
Required Methods§
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".