pub struct DispatcherDebugStats {
pub num_total_requests: u64,
pub num_inlined_requests: u64,
pub non_inlined: NonInlinedStats,
}Expand description
Request statistics for a dispatcher.
Fields§
§num_total_requests: u64Total number of requests processed by this dispatcher.
num_inlined_requests: u64Number of requests that were inlined.
non_inlined: NonInlinedStatsBreakdown of reasons why requests were not inlined.
Trait Implementations§
Source§impl Clone for DispatcherDebugStats
impl Clone for DispatcherDebugStats
Source§fn clone(&self) -> DispatcherDebugStats
fn clone(&self) -> DispatcherDebugStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DispatcherDebugStats
Source§impl Debug for DispatcherDebugStats
impl Debug for DispatcherDebugStats
Source§impl Default for DispatcherDebugStats
impl Default for DispatcherDebugStats
Source§fn default() -> DispatcherDebugStats
fn default() -> DispatcherDebugStats
Returns the “default value” for a type. Read more
impl Eq for DispatcherDebugStats
Source§impl PartialEq for DispatcherDebugStats
impl PartialEq for DispatcherDebugStats
impl StructuralPartialEq for DispatcherDebugStats
Auto Trait Implementations§
impl Freeze for DispatcherDebugStats
impl RefUnwindSafe for DispatcherDebugStats
impl Send for DispatcherDebugStats
impl Sync for DispatcherDebugStats
impl Unpin for DispatcherDebugStats
impl UnsafeUnpin for DispatcherDebugStats
impl UnwindSafe for DispatcherDebugStats
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