pub enum LogError {
Io,
Capacity,
Encryption,
Serialization,
}Expand description
Logging sink error with no sensitive source text.
Variants§
Io
Output failed or was unavailable.
Capacity
A bounded sink rejected the event.
Encryption
DNT sealing or validation failed.
Serialization
Event serialization failed.
Trait Implementations§
impl Copy for LogError
impl Eq for LogError
Source§impl From<LogError> for LogConfigError
impl From<LogError> for LogConfigError
impl StructuralPartialEq for LogError
Auto Trait Implementations§
impl Freeze for LogError
impl RefUnwindSafe for LogError
impl Send for LogError
impl Sync for LogError
impl Unpin for LogError
impl UnsafeUnpin for LogError
impl UnwindSafe for LogError
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