pub enum IncomingLogLevel {
Cont,
Debug,
Error,
Info,
None,
Unknown(u32),
Warn,
}Variants§
Trait Implementations§
Source§impl Clone for IncomingLogLevel
impl Clone for IncomingLogLevel
Source§fn clone(&self) -> IncomingLogLevel
fn clone(&self) -> IncomingLogLevel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IncomingLogLevel
impl Debug for IncomingLogLevel
Source§impl PartialEq for IncomingLogLevel
impl PartialEq for IncomingLogLevel
Source§fn eq(&self, other: &IncomingLogLevel) -> bool
fn eq(&self, other: &IncomingLogLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IncomingLogLevel
impl Eq for IncomingLogLevel
impl StructuralPartialEq for IncomingLogLevel
Auto Trait Implementations§
impl Freeze for IncomingLogLevel
impl RefUnwindSafe for IncomingLogLevel
impl Send for IncomingLogLevel
impl Sync for IncomingLogLevel
impl Unpin for IncomingLogLevel
impl UnsafeUnpin for IncomingLogLevel
impl UnwindSafe for IncomingLogLevel
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