pub enum RequestLog {
    V1(RequestLogV1),
    V2(RequestLogV2),
    Unknown(Unknown),
}Variants§
Trait Implementations§
Source§impl Clone for RequestLog
 
impl Clone for RequestLog
Source§fn clone(&self) -> RequestLog
 
fn clone(&self) -> RequestLog
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 RequestLog
 
impl Debug for RequestLog
Source§impl<'de> Deserialize<'de> for RequestLog
 
impl<'de> Deserialize<'de> for RequestLog
Source§fn deserialize<D>(d: D) -> Result<RequestLog, D::Error>where
    D: Deserializer<'de>,
 
fn deserialize<D>(d: D) -> Result<RequestLog, D::Error>where
    D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for RequestLog
 
impl Hash for RequestLog
Source§impl Ord for RequestLog
 
impl Ord for RequestLog
Source§fn cmp(&self, other: &RequestLog) -> Ordering
 
fn cmp(&self, other: &RequestLog) -> 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 RequestLog
 
impl PartialEq for RequestLog
Source§impl PartialOrd for RequestLog
 
impl PartialOrd for RequestLog
Source§impl Serialize for RequestLog
 
impl Serialize for RequestLog
impl Eq for RequestLog
impl StructuralPartialEq for RequestLog
Auto Trait Implementations§
impl Freeze for RequestLog
impl RefUnwindSafe for RequestLog
impl Send for RequestLog
impl Sync for RequestLog
impl Unpin for RequestLog
impl UnwindSafe for RequestLog
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