pub struct CompilationStats {
pub total_routes: usize,
pub static_routes: usize,
pub dynamic_routes: usize,
pub parameter_routes: usize,
pub catch_all_routes: usize,
pub conflicts_detected: usize,
pub optimizations_applied: usize,
pub compilation_time_ms: u128,
}
Expand description
Statistics about compiled routes
Fields§
§total_routes: usize
§static_routes: usize
§dynamic_routes: usize
§parameter_routes: usize
§catch_all_routes: usize
§conflicts_detected: usize
§optimizations_applied: usize
§compilation_time_ms: u128
Trait Implementations§
Source§impl Clone for CompilationStats
impl Clone for CompilationStats
Source§fn clone(&self) -> CompilationStats
fn clone(&self) -> CompilationStats
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 CompilationStats
impl RefUnwindSafe for CompilationStats
impl Send for CompilationStats
impl Sync for CompilationStats
impl Unpin for CompilationStats
impl UnwindSafe for CompilationStats
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