pub struct MatchedRoute<'a, T: 'static + Context + Send> {
pub middleware: &'a MiddlewareChain<T>,
pub value: String,
pub params: HashMap<String, String>,
pub query_params: HashMap<String, String>,
}
Fields§
§middleware: &'a MiddlewareChain<T>
§value: String
§params: HashMap<String, String>
§query_params: HashMap<String, String>
Auto Trait Implementations§
impl<'a, T> Freeze for MatchedRoute<'a, T>
impl<'a, T> !RefUnwindSafe for MatchedRoute<'a, T>
impl<'a, T> Send for MatchedRoute<'a, T>
impl<'a, T> Sync for MatchedRoute<'a, T>
impl<'a, T> Unpin for MatchedRoute<'a, T>
impl<'a, T> !UnwindSafe for MatchedRoute<'a, T>
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