[][src]Struct varnishslog_types::PipeSession

pub struct PipeSession<'i> {
    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,
    pub backend_request: HttpRequest,
    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>,
    pub backend_request_header_index: Option<IndexedHeader>,
}

Fields

vxid: u32remote_address: Address<'i>start_timestamp: f64end_timestamp: Option<f64>backend_connection: Option<BackendConnection<'i>>request: HttpRequestbackend_request: HttpRequestprocess_duration: Option<f64>ttfb_duration: Option<f64>recv_total_bytes: u64sent_total_bytes: u64log: Log<'i>request_header_index: Option<IndexedHeader>backend_request_header_index: Option<IndexedHeader>

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> Unpin for PipeSession<'i>

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

impl<'i> UnwindSafe for PipeSession<'i>

impl<'i> RefUnwindSafe for PipeSession<'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]