Enum ruma_common::api::error::IntoHttpError
source · #[non_exhaustive]pub enum IntoHttpError {
NeedsAuthentication,
NoUnstablePath,
EndpointRemoved(MatrixVersion),
Json(Error),
Query(Error),
Header(HeaderSerializationError),
Http(Error),
}
Expand description
An error when converting one of ruma’s endpoint-specific request or response types to the corresponding http type.
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.
NeedsAuthentication
Tried to create an authentication request without an access token.
NoUnstablePath
Tried to create a request with an old enough version, for which no unstable endpoint exists.
This is also a fallback error for if the version is too new for this endpoint.
EndpointRemoved(MatrixVersion)
Tried to create a request with MatrixVersion
s for all of which this endpoint was
removed.
Json(Error)
JSON serialization failed.
Query(Error)
Query parameter serialization failed.
Header(HeaderSerializationError)
Header serialization failed.
Http(Error)
HTTP request construction failed.
Trait Implementations§
source§impl Debug for IntoHttpError
impl Debug for IntoHttpError
source§impl Display for IntoHttpError
impl Display for IntoHttpError
source§impl Error for IntoHttpError
impl Error for IntoHttpError
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<Error> for IntoHttpError
impl From<Error> for IntoHttpError
source§impl From<Error> for IntoHttpError
impl From<Error> for IntoHttpError
source§impl From<Error> for IntoHttpError
impl From<Error> for IntoHttpError
source§impl From<HeaderSerializationError> for IntoHttpError
impl From<HeaderSerializationError> for IntoHttpError
source§fn from(source: HeaderSerializationError) -> Self
fn from(source: HeaderSerializationError) -> Self
Converts to this type from the input type.
source§impl From<InvalidHeaderValue> for IntoHttpError
impl From<InvalidHeaderValue> for IntoHttpError
source§fn from(value: InvalidHeaderValue) -> Self
fn from(value: InvalidHeaderValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IntoHttpError
impl !RefUnwindSafe for IntoHttpError
impl Send for IntoHttpError
impl Sync for IntoHttpError
impl Unpin for IntoHttpError
impl !UnwindSafe for IntoHttpError
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