Trait LoggerExtManual

Source
pub trait LoggerExtManual:
    IsA<Logger>
    + Sealed
    + 'static {
    // Provided method
    fn set_printer<P: Fn(&Logger, LoggerLogLevel, char, &GStr) + Send + Sync + 'static>(
        &self,
        printer: P,
    ) { ... }
}

Provided Methods§

Source

fn set_printer<P: Fn(&Logger, LoggerLogLevel, char, &GStr) + Send + Sync + 'static>( &self, printer: P, )

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§