#[non_exhaustive]pub struct MissingPathParams;
Expand description
Rejection type used if axum’s internal representation of path parameters
is missing. This is commonly caused by extracting Request<_>
. Path
must be extracted first.
Implementations
Trait Implementations
sourceimpl Debug for MissingPathParams
impl Debug for MissingPathParams
sourceimpl Default for MissingPathParams
impl Default for MissingPathParams
sourceimpl Display for MissingPathParams
impl Display for MissingPathParams
sourceimpl Error for MissingPathParams
impl Error for MissingPathParams
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<MissingPathParams> for PathRejection
impl From<MissingPathParams> for PathRejection
sourcefn from(inner: MissingPathParams) -> Self
fn from(inner: MissingPathParams) -> Self
Converts to this type from the input type.
sourceimpl From<MissingPathParams> for RawPathParamsRejection
impl From<MissingPathParams> for RawPathParamsRejection
sourcefn from(inner: MissingPathParams) -> Self
fn from(inner: MissingPathParams) -> Self
Converts to this type from the input type.
sourceimpl IntoResponse for MissingPathParams
impl IntoResponse for MissingPathParams
sourcefn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations
impl RefUnwindSafe for MissingPathParams
impl Send for MissingPathParams
impl Sync for MissingPathParams
impl Unpin for MissingPathParams
impl UnwindSafe for MissingPathParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more