pub enum LoggingMode {
Raw,
Interpreted,
Both,
}Expand description
Logging mode for packet display
Variants§
Raw
Show raw packet data only
Interpreted
Show interpreted packet data with field descriptions
Both
Show both raw and interpreted data
Trait Implementations§
Source§impl Clone for LoggingMode
impl Clone for LoggingMode
Source§fn clone(&self) -> LoggingMode
fn clone(&self) -> LoggingMode
Returns a duplicate 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 LoggingMode
impl Debug for LoggingMode
Source§impl PartialEq for LoggingMode
impl PartialEq for LoggingMode
impl Copy for LoggingMode
impl Eq for LoggingMode
impl StructuralPartialEq for LoggingMode
Auto Trait Implementations§
impl Freeze for LoggingMode
impl RefUnwindSafe for LoggingMode
impl Send for LoggingMode
impl Sync for LoggingMode
impl Unpin for LoggingMode
impl UnwindSafe for LoggingMode
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