#[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§
Source§impl<E> FromHttpResponseError<E>
impl<E> FromHttpResponseError<E>
Sourcepub 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.
Source§impl<E, F> FromHttpResponseError<Result<E, F>>
impl<E, F> FromHttpResponseError<Result<E, F>>
Sourcepub 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§
Source§impl<E: Debug> Debug for FromHttpResponseError<E>
impl<E: Debug> Debug for FromHttpResponseError<E>
Source§impl<E: Display> Display for FromHttpResponseError<E>
impl<E: Display> Display for FromHttpResponseError<E>
Source§impl<E: StdError> Error for FromHttpResponseError<E>
impl<E: StdError> Error for FromHttpResponseError<E>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<E, T> From<T> for FromHttpResponseError<E>where
T: Into<DeserializationError>,
impl<E, T> From<T> for FromHttpResponseError<E>where
T: Into<DeserializationError>,
Auto Trait Implementations§
impl<E> Freeze for FromHttpResponseError<E>where
E: Freeze,
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