Enum matrix_sdk_base::ruma::api::error::FromHttpResponseError
#[non_exhaustive]pub enum FromHttpResponseError<E> {
Deserialization(DeserializationError),
Server(E),
}
Available on crate feature
api
only.Expand description
An error when converting a http response to one of Ruma’s endpoint-specific response types.
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.
Deserialization(DeserializationError)
Deserialization failed
Server(E)
The server returned a non-success status
Implementations§
§impl<E> FromHttpResponseError<E>
impl<E> FromHttpResponseError<E>
pub fn map<F>(self, f: impl FnOnce(E) -> F) -> FromHttpResponseError<F>
pub fn map<F>(self, f: impl FnOnce(E) -> F) -> FromHttpResponseError<F>
Map FromHttpResponseError<E>
to FromHttpResponseError<F>
by applying a function to a
contained Server
value, leaving a Deserialization
value untouched.
§impl<E, F> FromHttpResponseError<Result<E, F>>
impl<E, F> FromHttpResponseError<Result<E, F>>
pub fn transpose(self) -> Result<FromHttpResponseError<E>, F>
pub fn transpose(self) -> Result<FromHttpResponseError<E>, F>
Transpose FromHttpResponseError<Result<E, F>>
to Result<FromHttpResponseError<E>, F>
.
Trait Implementations§
§impl<E> Debug for FromHttpResponseError<E>where
E: Debug,
impl<E> Debug for FromHttpResponseError<E>where
E: Debug,
§impl<E> Display for FromHttpResponseError<E>where
E: Display,
impl<E> Display for FromHttpResponseError<E>where
E: Display,
§impl<E> Error for FromHttpResponseError<E>where
E: Error,
impl<E> Error for FromHttpResponseError<E>where
E: Error,
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()
§impl<E, T> From<T> for FromHttpResponseError<E>where
T: Into<DeserializationError>,
impl<E, T> From<T> for FromHttpResponseError<E>where
T: Into<DeserializationError>,
§fn from(err: T) -> FromHttpResponseError<E>
fn from(err: T) -> FromHttpResponseError<E>
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> !RefUnwindSafe for FromHttpResponseError<E>
impl<E> Send for FromHttpResponseError<E>where
E: Send,
impl<E> Sync for FromHttpResponseError<E>where
E: Sync,
impl<E> Unpin for FromHttpResponseError<E>where
E: Unpin,
impl<E> !UnwindSafe for FromHttpResponseError<E>
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