[][src]Enum varnishslog_types::HttpAccessRecord

pub enum HttpAccessRecord<'i> {
    ClientRequest(ClientRequest<'i>),
    EsiSubrequest(ClientRequest<'i>),
    PipeSession(PipeSession<'i>),
}

This is entry type that JSON varnishslog output format can be deserialized to

Variants

ClientRequest(ClientRequest<'i>)EsiSubrequest(ClientRequest<'i>)PipeSession(PipeSession<'i>)

Methods

impl<'i> HttpAccessRecord<'i>[src]

Trait Implementations

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

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

Auto Trait Implementations

impl<'i> Send for HttpAccessRecord<'i>

impl<'i> Unpin for HttpAccessRecord<'i>

impl<'i> Sync for HttpAccessRecord<'i>

impl<'i> UnwindSafe for HttpAccessRecord<'i>

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