pub struct Match<'a, T> {
pub handler: &'a T,
pub captures: Captures,
}
Expand description
Match data for a recognized route
Fields§
§handler: &'a T
§captures: Captures
Auto Trait Implementations§
impl<'a, T> Freeze for Match<'a, T>
impl<'a, T> RefUnwindSafe for Match<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for Match<'a, T>where
T: Sync,
impl<'a, T> Sync for Match<'a, T>where
T: Sync,
impl<'a, T> Unpin for Match<'a, T>
impl<'a, T> UnwindSafe for Match<'a, T>where
T: RefUnwindSafe,
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