pub enum DetailLevel {
Control,
Headers,
HeadersSizes,
HeadersData,
Full,
}Expand description
Detail level — declares what was recorded.
Each level is a strict superset of the one above it.
Variants§
Control
Control messages only.
Headers
Control messages + data stream headers and object metadata.
HeadersSizes
Headers + payload byte lengths.
HeadersData
Headers + full payload bytes.
Full
Everything above + raw wire bytes.
Implementations§
Trait Implementations§
Source§impl Clone for DetailLevel
impl Clone for DetailLevel
Source§fn clone(&self) -> DetailLevel
fn clone(&self) -> DetailLevel
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 DetailLevel
impl Debug for DetailLevel
Source§impl Ord for DetailLevel
impl Ord for DetailLevel
Source§fn cmp(&self, other: &DetailLevel) -> Ordering
fn cmp(&self, other: &DetailLevel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DetailLevel
impl PartialEq for DetailLevel
Source§impl PartialOrd for DetailLevel
impl PartialOrd for DetailLevel
impl Copy for DetailLevel
impl Eq for DetailLevel
impl StructuralPartialEq for DetailLevel
Auto Trait Implementations§
impl Freeze for DetailLevel
impl RefUnwindSafe for DetailLevel
impl Send for DetailLevel
impl Sync for DetailLevel
impl Unpin for DetailLevel
impl UnsafeUnpin for DetailLevel
impl UnwindSafe for DetailLevel
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