Struct ruma::api::error::MatrixError
source · pub struct MatrixError {
pub status_code: StatusCode,
pub body: MatrixErrorBody,
}
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§
source§impl Clone for MatrixError
impl Clone for MatrixError
source§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 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)>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)