[][src]Struct varnishslog_types::BackendAccess

pub struct BackendAccess<'i> {
    pub vxid: u32,
    pub start_timestamp: Option<f64>,
    pub end_timestamp: Option<f64>,
    pub handling: &'i str,
    pub request: HttpRequest,
    pub response: Option<HttpResponse>,
    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>,
    pub response_header_index: Option<IndexedHeader>,
    pub cache_object_response_header_index: Option<IndexedHeader>,
    pub lru_nuked: u32,
}

Fields

vxid: u32start_timestamp: Option<f64>end_timestamp: Option<f64>handling: &'i strrequest: HttpRequestresponse: Option<HttpResponse>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>response_header_index: Option<IndexedHeader>cache_object_response_header_index: Option<IndexedHeader>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> Unpin for BackendAccess<'i>

impl<'i> Sync for BackendAccess<'i>

impl<'i> UnwindSafe for BackendAccess<'i>

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