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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl LogWrapExt for Option<RDKafkaLogLevel>

§

type Item = RDKafkaLogLevel

source§

fn default() -> Self::Item

source§

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

Implementors§