pub struct ExtractedParams {
pub params: Vec<(String, String)>,
}Expand description
Extracted path parameters.
Fields§
§params: Vec<(String, String)>Parameter name to extracted value.
Implementations§
Trait Implementations§
Source§impl Clone for ExtractedParams
impl Clone for ExtractedParams
Source§fn clone(&self) -> ExtractedParams
fn clone(&self) -> ExtractedParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtractedParams
impl Debug for ExtractedParams
Auto Trait Implementations§
impl Freeze for ExtractedParams
impl RefUnwindSafe for ExtractedParams
impl Send for ExtractedParams
impl Sync for ExtractedParams
impl Unpin for ExtractedParams
impl UnsafeUnpin for ExtractedParams
impl UnwindSafe for ExtractedParams
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