pub enum NetflowParseError {
Incomplete(String),
Partial(PartialParse),
UnallowedVersion(u16),
UnknownVersion(Vec<u8>),
}
Variants§
Trait Implementations§
Source§impl Clone for NetflowParseError
impl Clone for NetflowParseError
Source§fn clone(&self) -> NetflowParseError
fn clone(&self) -> NetflowParseError
Returns a copy of the value. Read more
1.0.0 · 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 NetflowParseError
impl Debug for NetflowParseError
Auto Trait Implementations§
impl Freeze for NetflowParseError
impl RefUnwindSafe for NetflowParseError
impl Send for NetflowParseError
impl Sync for NetflowParseError
impl Unpin for NetflowParseError
impl UnwindSafe for NetflowParseError
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