pub enum DecodeOutput {
None,
Line(LogLine),
TwoLines {
earlier: LogLine,
current: LogLine,
},
}Variants§
Trait Implementations§
Source§impl Clone for DecodeOutput
impl Clone for DecodeOutput
Source§fn clone(&self) -> DecodeOutput
fn clone(&self) -> DecodeOutput
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 DecodeOutput
impl Debug for DecodeOutput
Source§impl PartialEq for DecodeOutput
impl PartialEq for DecodeOutput
Source§fn eq(&self, other: &DecodeOutput) -> bool
fn eq(&self, other: &DecodeOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DecodeOutput
impl StructuralPartialEq for DecodeOutput
Auto Trait Implementations§
impl Freeze for DecodeOutput
impl RefUnwindSafe for DecodeOutput
impl Send for DecodeOutput
impl Sync for DecodeOutput
impl Unpin for DecodeOutput
impl UnsafeUnpin for DecodeOutput
impl UnwindSafe for DecodeOutput
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