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.
Failed to convert http::header::HeaderValue to str.
Tuple Fields of ToStrError
0: ToStrErrorThe given required header is missing.
Tuple Fields of MissingHeader
0: StringTrait Implementations
Performs the conversion.