pub enum LogEventError {
TextTooLong,
TooManyFields,
FieldKeyTooLong,
FieldValueTooLong,
}Expand description
Event rejected before sanitization or sink delivery.
Variants§
TextTooLong
A text field exceeds its public byte ceiling.
TooManyFields
The field count exceeds the public ceiling.
FieldKeyTooLong
A structured field key exceeds its public byte ceiling.
FieldValueTooLong
A structured field value exceeds its public byte ceiling.
Trait Implementations§
Source§impl Clone for LogEventError
impl Clone for LogEventError
Source§fn clone(&self) -> LogEventError
fn clone(&self) -> LogEventError
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 LogEventError
Source§impl Debug for LogEventError
impl Debug for LogEventError
impl Eq for LogEventError
Source§impl PartialEq for LogEventError
impl PartialEq for LogEventError
impl StructuralPartialEq for LogEventError
Auto Trait Implementations§
impl Freeze for LogEventError
impl RefUnwindSafe for LogEventError
impl Send for LogEventError
impl Sync for LogEventError
impl Unpin for LogEventError
impl UnsafeUnpin for LogEventError
impl UnwindSafe for LogEventError
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