pub struct CompilationResult {
pub matcher: RouteMatcher,
pub extractors: HashMap<String, ParameterExtractor>,
pub route_registry: HashMap<String, RouteInfo>,
pub stats: CompilationStats,
pub warnings: Vec<String>,
}
Expand description
Result of route compilation
Fields§
§matcher: RouteMatcher
§extractors: HashMap<String, ParameterExtractor>
§route_registry: HashMap<String, RouteInfo>
§stats: CompilationStats
§warnings: Vec<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompilationResult
impl RefUnwindSafe for CompilationResult
impl Send for CompilationResult
impl Sync for CompilationResult
impl Unpin for CompilationResult
impl UnwindSafe for CompilationResult
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