[][src]Struct varnishslog_types::ClientRequest

pub struct ClientRequest<'i> {
    pub vxid: u32,
    pub session: Option<SessionInfo<'i>>,
    pub remote_address: Address<'i>,
    pub start_timestamp: f64,
    pub end_timestamp: Option<f64>,
    pub handling: &'i str,
    pub request: Option<HttpRequest>,
    pub response: Option<HttpResponse>,
    pub backend_access: Option<BackendAccess<'i>>,
    pub process_duration: Option<f64>,
    pub fetch_duration: Option<f64>,
    pub ttfb_duration: f64,
    pub serve_duration: f64,
    pub recv_header_bytes: u64,
    pub recv_body_bytes: u64,
    pub recv_total_bytes: u64,
    pub sent_header_bytes: u64,
    pub sent_body_bytes: u64,
    pub sent_total_bytes: u64,
    pub esi_count: u64,
    pub compression: Option<Compression<'i>>,
    pub restart_count: u64,
    pub restart_log: Option<Log<'i>>,
    pub log: Log<'i>,
    pub request_header_index: Option<IndexedHeader>,
    pub response_header_index: Option<IndexedHeader>,
}

Fields

vxid: u32session: Option<SessionInfo<'i>>remote_address: Address<'i>start_timestamp: f64end_timestamp: Option<f64>handling: &'i strrequest: Option<HttpRequest>response: Option<HttpResponse>backend_access: Option<BackendAccess<'i>>process_duration: Option<f64>fetch_duration: Option<f64>ttfb_duration: f64serve_duration: f64recv_header_bytes: u64recv_body_bytes: u64recv_total_bytes: u64sent_header_bytes: u64sent_body_bytes: u64sent_total_bytes: u64esi_count: u64compression: Option<Compression<'i>>restart_count: u64restart_log: Option<Log<'i>>log: Log<'i>request_header_index: Option<IndexedHeader>response_header_index: Option<IndexedHeader>

Trait Implementations

impl<'i> Debug for ClientRequest<'i>[src]

impl<'de: 'i, 'i> Deserialize<'de> for ClientRequest<'i>[src]

Auto Trait Implementations

impl<'i> Send for ClientRequest<'i>

impl<'i> Unpin for ClientRequest<'i>

impl<'i> Sync for ClientRequest<'i>

impl<'i> UnwindSafe for ClientRequest<'i>

impl<'i> RefUnwindSafe for ClientRequest<'i>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]