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: StatusCodeThe http response’s status code.
body: MatrixErrorBodyThe http response’s body.
Trait Implementations§
Source§impl Clone for MatrixError
 
impl Clone for MatrixError
Source§fn clone(&self) -> MatrixError
 
fn clone(&self) -> MatrixError
Returns a duplicate 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 moreSource§impl Debug for MatrixError
 
impl Debug for MatrixError
Source§impl Display for MatrixError
 
impl Display for MatrixError
Source§impl EndpointError for MatrixError
 
impl EndpointError for MatrixError
Source§fn from_http_response<T>(response: Response<T>) -> MatrixError
 
fn from_http_response<T>(response: Response<T>) -> MatrixError
Source§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)>
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 OutgoingResponse for MatrixError
 
impl OutgoingResponse for MatrixError
Source§fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>
 
fn try_into_http_response<T>(self) -> Result<Response<T>, IntoHttpError>
Tries to convert this response into an 
http::Response. Read moreAuto Trait Implementations§
impl !Freeze for MatrixError
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