Skip to main content

LogBackend

Trait LogBackend 

Source
pub trait LogBackend: Sized {
    // Required method
    fn put(&self, entry: Arguments<'_>, node: &LogNode<'_, Self>);
}

Required Methods§

Source

fn put(&self, entry: Arguments<'_>, node: &LogNode<'_, Self>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§