Struct ruma_client_api::error::Error
source · #[non_exhaustive]pub struct Error {
pub status_code: StatusCode,
pub body: ErrorBody,
}
Expand description
A Matrix Error
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status_code: StatusCode
The http status code.
body: ErrorBody
The http response’s body.
Implementations§
source§impl Error
impl Error
sourcepub fn new(status_code: StatusCode, body: ErrorBody) -> Self
pub fn new(status_code: StatusCode, body: ErrorBody) -> Self
Constructs a new Error
with the given status code and body.
This is equivalent to calling body.into_error(status_code)
.
sourcepub fn error_kind(&self) -> Option<&ErrorKind>
pub 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
).
Trait Implementations§
source§impl EndpointError for Error
impl EndpointError for Error
source§impl Error for Error
impl Error for 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 From<Error> for UiaaResponse
impl From<Error> for UiaaResponse
source§fn from(error: MatrixError) -> Self
fn from(error: MatrixError) -> Self
Converts to this type from the input type.
source§impl OutgoingResponse for Error
impl OutgoingResponse for Error
source§fn try_into_http_response<T: Default + BufMut>(
self,
) -> Result<Response<T>, IntoHttpError>
fn try_into_http_response<T: Default + BufMut>( self, ) -> Result<Response<T>, IntoHttpError>
Tries to convert this response into an
http::Response
. Read moreAuto Trait Implementations§
impl !Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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
)