pub enum LogConfigError {
MissingFile,
Sink(LogError),
}Expand description
Invalid high-level logger configuration.
Variants§
MissingFile
The selected mode requires a file configuration.
Sink(LogError)
A sink rejected its bounded configuration.
Trait Implementations§
Source§impl Clone for LogConfigError
impl Clone for LogConfigError
Source§fn clone(&self) -> LogConfigError
fn clone(&self) -> LogConfigError
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 moreimpl Copy for LogConfigError
Source§impl Debug for LogConfigError
impl Debug for LogConfigError
impl Eq for LogConfigError
Source§impl From<LogError> for LogConfigError
impl From<LogError> for LogConfigError
Source§fn from(error: LogError) -> LogConfigError
fn from(error: LogError) -> LogConfigError
Converts to this type from the input type.
Source§impl PartialEq for LogConfigError
impl PartialEq for LogConfigError
impl StructuralPartialEq for LogConfigError
Auto Trait Implementations§
impl Freeze for LogConfigError
impl RefUnwindSafe for LogConfigError
impl Send for LogConfigError
impl Sync for LogConfigError
impl Unpin for LogConfigError
impl UnsafeUnpin for LogConfigError
impl UnwindSafe for LogConfigError
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