Enum rdkafka_wrap::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§
source§impl Clone for RDKafkaLogLevel
impl Clone for RDKafkaLogLevel
source§fn clone(&self) -> RDKafkaLogLevel
fn clone(&self) -> RDKafkaLogLevel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RDKafkaLogLevel
impl Debug for RDKafkaLogLevel
impl Copy for RDKafkaLogLevel
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more