Enum matrix_sdk_base::ruma::api::error::FromHttpResponseError
source · #[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 for FromHttpResponseError<E>where
E: Debug,
impl<E> Debug for FromHttpResponseError<E>where
E: Debug,
source§impl<E> Display for FromHttpResponseError<E>where
E: Display,
impl<E> Display for FromHttpResponseError<E>where
E: Display,
source§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()
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>,
source§fn from(err: T) -> FromHttpResponseError<E>
fn from(err: T) -> FromHttpResponseError<E>
Converts to this type from the input type.
source§impl FromHttpResponseErrorExt for FromHttpResponseError<Error>
impl FromHttpResponseErrorExt for FromHttpResponseError<Error>
source§fn error_kind(&self) -> Option<&ErrorKind>
fn error_kind(&self) -> Option<&ErrorKind>
If
self
is a server error in the errcode
+ error
format expected
for client-server API endpoints, returns the error kind (errcode
).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
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more