Enum rdkafka::config::RDKafkaLogLevel
source · [−]pub enum RDKafkaLogLevel {
Emerg,
Alert,
Critical,
Error,
Warning,
Notice,
Info,
Debug,
}
Expand description
The log levels supported by librdkafka.
Variants
Emerg
Higher priority then Level::Error
from the log
crate.
Alert
Higher priority then Level::Error
from the log
crate.
Critical
Higher priority then Level::Error
from the log
crate.
Error
Equivalent to Level::Error
from the log crate.
Warning
Equivalent to Level::Warn
from the log crate.
Notice
Higher priority then Level::Info
from the log
crate.
Info
Equivalent to Level::Info
from the log crate.
Debug
Equivalent to Level::Debug
from the log crate.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RDKafkaLogLevel
impl Send for RDKafkaLogLevel
impl Sync for RDKafkaLogLevel
impl Unpin for RDKafkaLogLevel
impl UnwindSafe for RDKafkaLogLevel
Blanket Implementations
Mutably borrows from an owned value. Read more