[][src]Struct varnishslog_types::PipeSession

pub struct PipeSession<'i> {
    pub record_type: &'i str,
    pub vxid: u32,
    pub remote_address: Address<'i>,
    pub start_timestamp: f64,
    pub end_timestamp: Option<f64>,
    pub backend_connection: Option<BackendConnection<'i>>,
    pub request: HttpRequest<'i>,
    pub backend_request: HttpRequest<'i>,
    pub process_duration: Option<f64>,
    pub ttfb_duration: Option<f64>,
    pub recv_total_bytes: u64,
    pub sent_total_bytes: u64,
    pub log: Log<'i>,
    pub request_header_index: Option<IndexedHeader<'i>>,
    pub backend_request_header_index: Option<IndexedHeader<'i>>,
}

Fields

record_type: &'i strvxid: u32remote_address: Address<'i>start_timestamp: f64end_timestamp: Option<f64>backend_connection: Option<BackendConnection<'i>>request: HttpRequest<'i>backend_request: HttpRequest<'i>process_duration: Option<f64>ttfb_duration: Option<f64>recv_total_bytes: u64sent_total_bytes: u64log: Log<'i>request_header_index: Option<IndexedHeader<'i>>backend_request_header_index: Option<IndexedHeader<'i>>

Trait Implementations

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

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

Auto Trait Implementations

impl<'i> Send for PipeSession<'i>

impl<'i> Sync for PipeSession<'i>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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