Skip to main content

PipeSession

Struct PipeSession 

Source
pub struct PipeSession<'i> {
Show 14 fields pub vxid: u32, pub remote_address: Address<'i>, pub start_timestamp: f64, pub end_timestamp: Option<f64>, pub backend_connection: Option<BackendConnection<'i>>, pub request: HttpRequest, pub backend_request: HttpRequest, pub process_duration: Option<f64>, pub ttfb_duration: Option<f64>, pub recv_total_bytes: u64, pub sent_total_bytes: u64, pub log: Log<'i>, pub request_header_index: Option<IndexedHeader>, pub backend_request_header_index: Option<IndexedHeader>,
}

Fields§

§vxid: u32§remote_address: Address<'i>§start_timestamp: f64§end_timestamp: Option<f64>§backend_connection: Option<BackendConnection<'i>>§request: HttpRequest§backend_request: HttpRequest§process_duration: Option<f64>§ttfb_duration: Option<f64>§recv_total_bytes: u64§sent_total_bytes: u64§log: Log<'i>§request_header_index: Option<IndexedHeader>§backend_request_header_index: Option<IndexedHeader>

Trait Implementations§

Source§

impl<'i> Debug for PipeSession<'i>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de: 'i, 'i> Deserialize<'de> for PipeSession<'i>

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

§

impl<'i> Freeze for PipeSession<'i>

§

impl<'i> RefUnwindSafe for PipeSession<'i>

§

impl<'i> Send for PipeSession<'i>

§

impl<'i> Sync for PipeSession<'i>

§

impl<'i> Unpin for PipeSession<'i>

§

impl<'i> UnsafeUnpin for PipeSession<'i>

§

impl<'i> UnwindSafe for PipeSession<'i>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.