pub struct MatcherStats {
pub static_routes: usize,
pub dynamic_routes: usize,
pub total_routes: usize,
}
Expand description
Statistics about the route matcher
Fields§
§static_routes: usize
§dynamic_routes: usize
§total_routes: usize
Trait Implementations§
Source§impl Clone for MatcherStats
impl Clone for MatcherStats
Source§fn clone(&self) -> MatcherStats
fn clone(&self) -> MatcherStats
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 moreAuto Trait Implementations§
impl Freeze for MatcherStats
impl RefUnwindSafe for MatcherStats
impl Send for MatcherStats
impl Sync for MatcherStats
impl Unpin for MatcherStats
impl UnwindSafe for MatcherStats
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