pub struct RouteInfo {
pub path: String,
pub method: String,
pub parameters: Vec<String>,
pub query_params: Vec<String>,
pub middleware_used: Vec<String>,
}
Expand description
Route information
Fields§
§path: String
§method: String
§parameters: Vec<String>
§query_params: Vec<String>
§middleware_used: Vec<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RouteInfo
impl RefUnwindSafe for RouteInfo
impl Send for RouteInfo
impl Sync for RouteInfo
impl Unpin for RouteInfo
impl UnwindSafe for RouteInfo
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