[][src]Struct varnishslog_types::BackendAccess

pub struct BackendAccess<'i> {
    pub vxid: i64,
    pub start_timestamp: Option<f64>,
    pub end_timestamp: Option<f64>,
    pub handling: &'i str,
    pub request: HttpRequest<'i>,
    pub response: Option<HttpResponse<'i>>,
    pub send_duration: f64,
    pub wait_duration: Option<f64>,
    pub ttfb_duration: Option<f64>,
    pub fetch_duration: Option<f64>,
    pub sent_header_bytes: Option<u64>,
    pub sent_body_bytes: Option<u64>,
    pub sent_total_bytes: Option<u64>,
    pub recv_header_bytes: Option<u64>,
    pub recv_body_bytes: Option<u64>,
    pub recv_total_bytes: Option<u64>,
    pub retry: u64,
    pub backend_connection: Option<BackendConnection<'i>>,
    pub cache_object: Option<CacheObject<'i>>,
    pub compression: Option<Compression<'i>>,
    pub log: Log<'i>,
    pub request_header_index: Option<IndexedHeader<'i>>,
    pub response_header_index: Option<IndexedHeader<'i>>,
    pub cache_object_response_header_index: Option<IndexedHeader<'i>>,
    pub lru_nuked: u32,
}

Fields

vxid: i64start_timestamp: Option<f64>end_timestamp: Option<f64>handling: &'i strrequest: HttpRequest<'i>response: Option<HttpResponse<'i>>send_duration: f64wait_duration: Option<f64>ttfb_duration: Option<f64>fetch_duration: Option<f64>sent_header_bytes: Option<u64>sent_body_bytes: Option<u64>sent_total_bytes: Option<u64>recv_header_bytes: Option<u64>recv_body_bytes: Option<u64>recv_total_bytes: Option<u64>retry: u64backend_connection: Option<BackendConnection<'i>>cache_object: Option<CacheObject<'i>>compression: Option<Compression<'i>>log: Log<'i>request_header_index: Option<IndexedHeader<'i>>response_header_index: Option<IndexedHeader<'i>>cache_object_response_header_index: Option<IndexedHeader<'i>>lru_nuked: u32

Trait Implementations

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

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

Auto Trait Implementations

impl<'i> Send for BackendAccess<'i>

impl<'i> Sync for BackendAccess<'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> Any for T where
    T: 'static + ?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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]