pub struct HttpCounters {Show 15 fields
pub method_option_count: u32,
pub method_get_count: u32,
pub method_head_count: u32,
pub method_post_count: u32,
pub method_put_count: u32,
pub method_delete_count: u32,
pub method_trace_count: u32,
pub method_connect_count: u32,
pub method_other_count: u32,
pub status_1xx_count: u32,
pub status_2xx_count: u32,
pub status_3xx_count: u32,
pub status_4xx_count: u32,
pub status_5xx_count: u32,
pub status_other_count: u32,
}Fields§
§method_option_count: u32§method_get_count: u32§method_head_count: u32§method_post_count: u32§method_put_count: u32§method_delete_count: u32§method_trace_count: u32§method_connect_count: u32§method_other_count: u32§status_1xx_count: u32§status_2xx_count: u32§status_3xx_count: u32§status_4xx_count: u32§status_5xx_count: u32§status_other_count: u32Trait Implementations§
Source§impl Clone for HttpCounters
impl Clone for HttpCounters
Source§fn clone(&self) -> HttpCounters
fn clone(&self) -> HttpCounters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HttpCounters
impl Debug for HttpCounters
Source§impl<'de> Deserialize<'de> for HttpCounters
impl<'de> Deserialize<'de> for HttpCounters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HttpCounters
impl PartialEq for HttpCounters
Source§impl Serialize for HttpCounters
impl Serialize for HttpCounters
impl Eq for HttpCounters
impl StructuralPartialEq for HttpCounters
Auto Trait Implementations§
impl Freeze for HttpCounters
impl RefUnwindSafe for HttpCounters
impl Send for HttpCounters
impl Sync for HttpCounters
impl Unpin for HttpCounters
impl UnsafeUnpin for HttpCounters
impl UnwindSafe for HttpCounters
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