Struct axum_yaml::rejection::MissingYamlContentType
source · #[non_exhaustive]pub struct MissingYamlContentType;
Expand description
Rejection type for Yaml
used if the Content-Type
header is missing.
Implementations§
Trait Implementations§
source§impl Debug for MissingYamlContentType
impl Debug for MissingYamlContentType
source§impl Default for MissingYamlContentType
impl Default for MissingYamlContentType
source§impl Display for MissingYamlContentType
impl Display for MissingYamlContentType
source§impl Error for MissingYamlContentType
impl Error for MissingYamlContentType
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<MissingYamlContentType> for YamlRejection
impl From<MissingYamlContentType> for YamlRejection
source§fn from(inner: MissingYamlContentType) -> Self
fn from(inner: MissingYamlContentType) -> Self
Converts to this type from the input type.
source§impl IntoResponse for MissingYamlContentType
impl IntoResponse for MissingYamlContentType
source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl RefUnwindSafe for MissingYamlContentType
impl Send for MissingYamlContentType
impl Sync for MissingYamlContentType
impl Unpin for MissingYamlContentType
impl UnwindSafe for MissingYamlContentType
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