Trait LogWrapExt

Source
pub trait LogWrapExt: Sized {
    type Item;

    // Required methods
    fn default() -> Self::Item;
    fn get_or_init(&self) -> Self::Item;
}

Required Associated Types§

Required Methods§

Source

fn default() -> Self::Item

Source

fn get_or_init(&self) -> Self::Item

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.

Implementations on Foreign Types§

Source§

impl LogWrapExt for Option<RDKafkaLogLevel>

Implementors§