[][src]Struct access_log_parser::CloudControllerLogEntry

pub struct CloudControllerLogEntry<'a> {
    pub request_host: &'a str,
    pub timestamp: DateTime<FixedOffset>,
    pub request: Request<()>,
    pub status_code: StatusCode,
    pub bytes: u32,
    pub referrer: Option<Uri>,
    pub user_agent: Option<&'a str>,
    pub x_forwarded_for: Vec<IpAddr>,
    pub vcap_request_id: Option<&'a str>,
    pub response_time: Option<f32>,
}

Fields

request_host: &'a strtimestamp: DateTime<FixedOffset>request: Request<()>status_code: StatusCodebytes: u32referrer: Option<Uri>user_agent: Option<&'a str>x_forwarded_for: Vec<IpAddr>vcap_request_id: Option<&'a str>response_time: Option<f32>

Trait Implementations

impl<'a> Debug for CloudControllerLogEntry<'a>[src]

Auto Trait Implementations

impl<'a> Send for CloudControllerLogEntry<'a>

impl<'a> Sync for CloudControllerLogEntry<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.