pub struct HttpStats {
pub method: String,
pub path: String,
pub remote_addr: String,
pub status: u16,
pub content_length: usize,
pub processing: u32,
pub transfer: u32,
pub serde: u32,
pub total: u32,
pub tls_version: String,
pub tls_not_before: String,
pub tls_not_after: String,
}Expand description
Statistics for HTTP requests
Fields§
§method: String§path: String§remote_addr: String§status: u16§content_length: usize§processing: u32§transfer: u32§serde: u32§total: u32§tls_version: String§tls_not_before: String§tls_not_after: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for HttpStats
impl RefUnwindSafe for HttpStats
impl Send for HttpStats
impl Sync for HttpStats
impl Unpin for HttpStats
impl UnwindSafe for HttpStats
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more