pub struct Path<T>(pub T);Expand description
Tuple Fields§
§0: TTrait Implementations§
Source§impl FromRequest for Path<(String,)>
impl FromRequest for Path<(String,)>
Source§type Error = ExtractError
type Error = ExtractError
The error type returned when extraction fails.
Source§impl FromRequest for Path<(String, String)>
impl FromRequest for Path<(String, String)>
Source§type Error = ExtractError
type Error = ExtractError
The error type returned when extraction fails.
Source§impl FromRequest for Path<(String, String, String)>
impl FromRequest for Path<(String, String, String)>
Source§type Error = ExtractError
type Error = ExtractError
The error type returned when extraction fails.
Source§impl FromRequest for Path<(String, String, String, String)>
impl FromRequest for Path<(String, String, String, String)>
Source§type Error = ExtractError
type Error = ExtractError
The error type returned when extraction fails.
Source§impl FromRequest for Path<String>
impl FromRequest for Path<String>
Source§type Error = ExtractError
type Error = ExtractError
The error type returned when extraction fails.
Auto Trait Implementations§
impl<T> Freeze for Path<T>where
T: Freeze,
impl<T> RefUnwindSafe for Path<T>where
T: RefUnwindSafe,
impl<T> Send for Path<T>where
T: Send,
impl<T> Sync for Path<T>where
T: Sync,
impl<T> Unpin for Path<T>where
T: Unpin,
impl<T> UnwindSafe for Path<T>where
T: UnwindSafe,
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