#[non_exhaustive]pub struct BodyAlreadyExtracted;
Expand description
Rejection type used if you try and extract the request body more than once.
Trait Implementations
sourceimpl Debug for BodyAlreadyExtracted
impl Debug for BodyAlreadyExtracted
sourceimpl Default for BodyAlreadyExtracted
impl Default for BodyAlreadyExtracted
sourcefn default() -> BodyAlreadyExtracted
fn default() -> BodyAlreadyExtracted
Returns the “default value” for a type. Read more
sourceimpl Display for BodyAlreadyExtracted
impl Display for BodyAlreadyExtracted
sourceimpl Error for BodyAlreadyExtracted
impl Error for BodyAlreadyExtracted
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<BodyAlreadyExtracted> for BytesRejection
impl From<BodyAlreadyExtracted> for BytesRejection
sourcefn from(inner: BodyAlreadyExtracted) -> Self
fn from(inner: BodyAlreadyExtracted) -> Self
Converts to this type from the input type.
sourceimpl From<BodyAlreadyExtracted> for StringRejection
impl From<BodyAlreadyExtracted> for StringRejection
sourcefn from(inner: BodyAlreadyExtracted) -> Self
fn from(inner: BodyAlreadyExtracted) -> Self
Converts to this type from the input type.
sourceimpl IntoResponse for BodyAlreadyExtracted
impl IntoResponse for BodyAlreadyExtracted
sourcefn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations
impl RefUnwindSafe for BodyAlreadyExtracted
impl Send for BodyAlreadyExtracted
impl Sync for BodyAlreadyExtracted
impl Unpin for BodyAlreadyExtracted
impl UnwindSafe for BodyAlreadyExtracted
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