pub struct EndpointStat {
pub host: String,
pub method: String,
pub norm_path: String,
pub count: usize,
pub statuses: BTreeMap<String, usize>,
pub content_types: Vec<String>,
pub sample_query_keys: Vec<String>,
pub error_count: usize,
}Fields§
§host: String§method: String§norm_path: String§count: usize§statuses: BTreeMap<String, usize>§content_types: Vec<String>§sample_query_keys: Vec<String>§error_count: usizeTrait Implementations§
Source§impl Debug for EndpointStat
impl Debug for EndpointStat
Auto Trait Implementations§
impl Freeze for EndpointStat
impl RefUnwindSafe for EndpointStat
impl Send for EndpointStat
impl Sync for EndpointStat
impl Unpin for EndpointStat
impl UnsafeUnpin for EndpointStat
impl UnwindSafe for EndpointStat
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