#[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) -> FormRejection
fn from(inner: BytesRejection) -> FormRejection
Converts to this type from the input type.
Sourceยงimpl From<BytesRejection> for JsonRejection
impl From<BytesRejection> for JsonRejection
Sourceยงfn from(inner: BytesRejection) -> JsonRejection
fn from(inner: BytesRejection) -> JsonRejection
Converts to this type from the input type.
Sourceยงimpl From<BytesRejection> for RawFormRejection
impl From<BytesRejection> for RawFormRejection
Sourceยงfn from(inner: BytesRejection) -> RawFormRejection
fn from(inner: BytesRejection) -> RawFormRejection
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<UnsyncBoxBody<Bytes, Error>>
fn into_response(self) -> Response<UnsyncBoxBody<Bytes, Error>>
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