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§
Implementations§
Source§impl MatrixErrorBody
 
impl MatrixErrorBody
Sourcepub 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§
Source§impl Clone for MatrixErrorBody
 
impl Clone for MatrixErrorBody
Source§fn clone(&self) -> MatrixErrorBody
 
fn clone(&self) -> MatrixErrorBody
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 moreAuto Trait Implementations§
impl !Freeze for MatrixErrorBody
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