#[non_exhaustive]pub enum StringRejection {
FailedToBufferBody(FailedToBufferBody),
InvalidUtf8(InvalidUtf8),
}
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)
InvalidUtf8(InvalidUtf8)
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Debug for StringRejection
impl Debug for StringRejection
Sourceยงimpl Display for StringRejection
impl Display for StringRejection
Sourceยงimpl Error for StringRejection
impl Error for StringRejection
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<FailedToBufferBody> for StringRejection
impl From<FailedToBufferBody> for StringRejection
Sourceยงfn from(inner: FailedToBufferBody) -> StringRejection
fn from(inner: FailedToBufferBody) -> StringRejection
Converts to this type from the input type.
Sourceยงimpl From<InvalidUtf8> for StringRejection
impl From<InvalidUtf8> for StringRejection
Sourceยงfn from(inner: InvalidUtf8) -> StringRejection
fn from(inner: InvalidUtf8) -> StringRejection
Converts to this type from the input type.
Sourceยงimpl IntoResponse for StringRejection
impl IntoResponse for StringRejection
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 StringRejection
impl !RefUnwindSafe for StringRejection
impl Send for StringRejection
impl Sync for StringRejection
impl Unpin for StringRejection
impl !UnwindSafe for StringRejection
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