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