pub enum FlowLogVerbosity {
Trajectory,
Debug,
}Variants§
Trajectory
Default. One Trajectory event per request, plus the existing
per-connection milestone events (Terminate, Error, Upgrade,
SecurityLimit).
Debug
Adds a per-step event for each Check / Middleware / Fetch /
Upgrade node. Used at incident time; not for production volumes.
Trait Implementations§
Source§impl Clone for FlowLogVerbosity
impl Clone for FlowLogVerbosity
Source§fn clone(&self) -> FlowLogVerbosity
fn clone(&self) -> FlowLogVerbosity
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 FlowLogVerbosity
impl Debug for FlowLogVerbosity
Source§impl<'de> Deserialize<'de> for FlowLogVerbosity
impl<'de> Deserialize<'de> for FlowLogVerbosity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FlowLogVerbosity
impl PartialEq for FlowLogVerbosity
Source§impl Serialize for FlowLogVerbosity
impl Serialize for FlowLogVerbosity
impl Copy for FlowLogVerbosity
impl Eq for FlowLogVerbosity
impl StructuralPartialEq for FlowLogVerbosity
Auto Trait Implementations§
impl Freeze for FlowLogVerbosity
impl RefUnwindSafe for FlowLogVerbosity
impl Send for FlowLogVerbosity
impl Sync for FlowLogVerbosity
impl Unpin for FlowLogVerbosity
impl UnsafeUnpin for FlowLogVerbosity
impl UnwindSafe for FlowLogVerbosity
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