Struct spring_web::extractor::rejection::MissingPathParams
source · #[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§
source§impl Debug for MissingPathParams
impl Debug for MissingPathParams
source§impl Default for MissingPathParams
impl Default for MissingPathParams
source§fn default() -> MissingPathParams
fn default() -> MissingPathParams
Returns the “default value” for a type. Read more
source§impl Display for MissingPathParams
impl Display for MissingPathParams
source§impl Error for MissingPathParams
impl Error for MissingPathParams
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<MissingPathParams> for PathRejection
impl From<MissingPathParams> for PathRejection
source§fn from(inner: MissingPathParams) -> PathRejection
fn from(inner: MissingPathParams) -> PathRejection
Converts to this type from the input type.
source§impl From<MissingPathParams> for RawPathParamsRejection
impl From<MissingPathParams> for RawPathParamsRejection
source§fn from(inner: MissingPathParams) -> RawPathParamsRejection
fn from(inner: MissingPathParams) -> RawPathParamsRejection
Converts to this type from the input type.
source§impl IntoResponse for MissingPathParams
impl IntoResponse for MissingPathParams
source§fn into_response(self) -> Response<Body>
fn into_response(self) -> Response<Body>
Create a response.
Auto Trait Implementations§
impl Freeze for MissingPathParams
impl RefUnwindSafe for MissingPathParams
impl Send for MissingPathParams
impl Sync for MissingPathParams
impl Unpin for MissingPathParams
impl UnwindSafe for MissingPathParams
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.