pub trait ApplicationLoggerInstaller {
// Required method
fn install(&self) -> Result<(), String>;
}Expand description
This trait is used to install an application logger.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".