Enum ruma_common::api::error::IntoHttpError
source · [−]#[non_exhaustive]
pub enum IntoHttpError {
NeedsAuthentication,
NoUnstablePath,
EndpointRemoved(MatrixVersion),
Json(Error),
Query(Error),
Header(InvalidHeaderValue),
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
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(InvalidHeaderValue)
Header serialization failed.
Http(Error)
HTTP request construction failed.
Trait Implementations
sourceimpl Debug for IntoHttpError
impl Debug for IntoHttpError
sourceimpl Display for IntoHttpError
impl Display for IntoHttpError
sourceimpl Error for IntoHttpError
impl Error for IntoHttpError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<Error> for IntoHttpError
impl From<Error> for IntoHttpError
sourceimpl From<Error> for IntoHttpError
impl From<Error> for IntoHttpError
sourceimpl From<Error> for IntoHttpError
impl From<Error> for IntoHttpError
sourceimpl From<InvalidHeaderValue> for IntoHttpError
impl From<InvalidHeaderValue> for IntoHttpError
sourcefn from(source: InvalidHeaderValue) -> Self
fn from(source: InvalidHeaderValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for IntoHttpError
impl Send for IntoHttpError
impl Sync for IntoHttpError
impl Unpin for IntoHttpError
impl !UnwindSafe for IntoHttpError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more