[][src]Struct varnishslog_types::ClientRecord

pub struct ClientRecord<'i> {
    pub record_type: &'i str,
    pub vxid: u64,
    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<'i>>,
    pub response: Option<HttpResponse<'i>>,
    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<'i>>,
    pub response_header_index: Option<IndexedHeader<'i>>,
}

Fields

record_type: &'i strvxid: u64session: Option<SessionInfo<'i>>remote_address: Address<'i>start_timestamp: f64end_timestamp: Option<f64>handling: &'i strrequest: Option<HttpRequest<'i>>response: Option<HttpResponse<'i>>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<'i>>response_header_index: Option<IndexedHeader<'i>>

Trait Implementations

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

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

Auto Trait Implementations

impl<'i> Send for ClientRecord<'i>

impl<'i> Sync for ClientRecord<'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]