Enum matrix_sdk_base::ruma::api::error::MatrixErrorBody
pub enum MatrixErrorBody {
Json(Value),
NotJson {
bytes: Bytes,
deserialization_error: Arc<Error>,
},
}
Available on crate feature
api
only.Expand description
The body of an error response.
Variants§
Json(Value)
A JSON body, as intended.
NotJson
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
§
bytes: Bytes
The raw bytes of the response body.
A response body that is not valid JSON.
Implementations§
§impl MatrixErrorBody
impl MatrixErrorBody
pub fn from_bytes(body_bytes: &[u8]) -> MatrixErrorBody
pub fn from_bytes(body_bytes: &[u8]) -> MatrixErrorBody
Create a MatrixErrorBody
from the given HTTP body bytes.
Trait Implementations§
§impl Clone for MatrixErrorBody
impl Clone for MatrixErrorBody
§fn clone(&self) -> MatrixErrorBody
fn clone(&self) -> MatrixErrorBody
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for MatrixErrorBody
impl Send for MatrixErrorBody
impl Sync for MatrixErrorBody
impl Unpin for MatrixErrorBody
impl !UnwindSafe for MatrixErrorBody
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