Skip to main content

DynamicLogging

Trait DynamicLogging 

Source
pub trait DynamicLogging {
    type Error;

    // Required methods
    fn init_stdout(&self) -> Result<(), Self::Error>;
    fn init_filelogger(&self) -> Result<(), Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn init_stdout(&self) -> Result<(), Self::Error>

Source

fn init_filelogger(&self) -> Result<(), Self::Error>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§