pub struct RouteParams(/* private fields */);
Expand description
Represents the URL parameters parsed from the path, e.g. a route with “/user/:id” pattern would contain a single “id” key.
Trait Implementations§
Source§impl Debug for RouteParams
impl Debug for RouteParams
Auto Trait Implementations§
impl Freeze for RouteParams
impl RefUnwindSafe for RouteParams
impl Send for RouteParams
impl Sync for RouteParams
impl Unpin for RouteParams
impl UnwindSafe for RouteParams
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