Struct matrix_sdk_base::ruma::api::error::MatrixError
pub struct MatrixError {
pub status_code: StatusCode,
pub body: MatrixErrorBody,
}
Available on crate feature
api
only.Expand description
A general-purpose Matrix error type consisting of an HTTP status code and a JSON body.
Note that individual ruma-*-api
crates may provide more specific error types.
Fields§
§status_code: StatusCode
The http response’s status code.
body: MatrixErrorBody
The http response’s body.
Trait Implementations§
§impl Clone for MatrixError
impl Clone for MatrixError
§fn clone(&self) -> MatrixError
fn clone(&self) -> MatrixError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for MatrixError
impl Debug for MatrixError
§impl Display for MatrixError
impl Display for MatrixError
§impl EndpointError for MatrixError
impl EndpointError for MatrixError
§fn from_http_response<T>(response: Response<T>) -> MatrixError
fn from_http_response<T>(response: Response<T>) -> MatrixError
§impl Error for MatrixError
impl Error for MatrixError
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 OutgoingResponse for MatrixError
impl OutgoingResponse for MatrixError
§fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>where
T: Default + BufMut,
fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>where
T: Default + BufMut,
Tries to convert this response into an
http::Response
. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for MatrixError
impl Send for MatrixError
impl Sync for MatrixError
impl Unpin for MatrixError
impl !UnwindSafe for MatrixError
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