Enum poem_openapi::error::ContentTypeError
source · [−]pub enum ContentTypeError {
NotSupported {
content_type: String,
},
ExpectContentType,
}
Expand description
Content type error.
Variants
NotSupported
Fields
content_type: String
The Content-Type
header requested by the client.
Not supported.
ExpectContentType
Expect content type header.
Trait Implementations
sourceimpl Debug for ContentTypeError
impl Debug for ContentTypeError
sourceimpl Display for ContentTypeError
impl Display for ContentTypeError
sourceimpl Error for ContentTypeError
impl Error for ContentTypeError
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 ResponseError for ContentTypeError
impl ResponseError for ContentTypeError
sourcefn status(&self) -> StatusCode
fn status(&self) -> StatusCode
The status code of this error.
Auto Trait Implementations
impl RefUnwindSafe for ContentTypeError
impl Send for ContentTypeError
impl Sync for ContentTypeError
impl Unpin for ContentTypeError
impl UnwindSafe for ContentTypeError
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