#[non_exhaustive]pub enum BytesRejection {
    FailedToBufferBody(FailedToBufferBody),
}Expand description
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FailedToBufferBody(FailedToBufferBody)
Implementations§
Trait Implementations§
Source§impl Debug for BytesRejection
 
impl Debug for BytesRejection
Source§impl Display for BytesRejection
 
impl Display for BytesRejection
Source§impl Error for BytesRejection
 
impl Error for BytesRejection
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<BytesRejection> for FormRejection
 
impl From<BytesRejection> for FormRejection
Source§fn from(inner: BytesRejection) -> Self
 
fn from(inner: BytesRejection) -> Self
Converts to this type from the input type.
Source§impl From<BytesRejection> for JsonRejection
 
impl From<BytesRejection> for JsonRejection
Source§fn from(inner: BytesRejection) -> Self
 
fn from(inner: BytesRejection) -> Self
Converts to this type from the input type.
Source§impl From<BytesRejection> for RawFormRejection
 
impl From<BytesRejection> for RawFormRejection
Source§fn from(inner: BytesRejection) -> Self
 
fn from(inner: BytesRejection) -> Self
Converts to this type from the input type.
Source§impl From<FailedToBufferBody> for BytesRejection
 
impl From<FailedToBufferBody> for BytesRejection
Source§fn from(inner: FailedToBufferBody) -> BytesRejection
 
fn from(inner: FailedToBufferBody) -> BytesRejection
Converts to this type from the input type.
Source§impl IntoResponse for BytesRejection
 
impl IntoResponse for BytesRejection
Source§fn into_response(self) -> Response<Body>
 
fn into_response(self) -> Response<Body>
Create a response.
Auto Trait Implementations§
impl Freeze for BytesRejection
impl !RefUnwindSafe for BytesRejection
impl Send for BytesRejection
impl Sync for BytesRejection
impl Unpin for BytesRejection
impl !UnwindSafe for BytesRejection
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