pub enum ValkeyLogLevel {
Debug,
Notice,
Verbose,
Warning,
}
Expand description
ValkeyLogLevel is a level of logging which can be used when logging with Redis. See raw::RedisModule_Log and the official valkey reference.
Variants§
Trait Implementations§
Source§impl AsRef<str> for ValkeyLogLevel
impl AsRef<str> for ValkeyLogLevel
Source§impl Clone for ValkeyLogLevel
impl Clone for ValkeyLogLevel
Source§fn clone(&self) -> ValkeyLogLevel
fn clone(&self) -> ValkeyLogLevel
Returns a duplicate 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 ValkeyLogLevel
impl Debug for ValkeyLogLevel
Source§impl From<Level> for ValkeyLogLevel
impl From<Level> for ValkeyLogLevel
impl Copy for ValkeyLogLevel
Auto Trait Implementations§
impl Freeze for ValkeyLogLevel
impl RefUnwindSafe for ValkeyLogLevel
impl Send for ValkeyLogLevel
impl Sync for ValkeyLogLevel
impl Unpin for ValkeyLogLevel
impl UnwindSafe for ValkeyLogLevel
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