Enum ruma_api::error::HeaderDeserializationError [−][src]
#[non_exhaustive]
pub enum HeaderDeserializationError {
ToStrError(ToStrError),
MissingHeader(String),
}Expand description
An error with the http headers.
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.
ToStrError(ToStrError)Failed to convert http::header::HeaderValue to str.
MissingHeader(String)The given required header is missing.
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for HeaderDeserializationErrorimpl Send for HeaderDeserializationErrorimpl Sync for HeaderDeserializationErrorimpl Unpin for HeaderDeserializationErrorimpl UnwindSafe for HeaderDeserializationError