pub struct JsonEnvelopeError {
pub schema_version: String,
pub command: String,
pub ok: bool,
pub error: ErrorEnvelope,
}Fields§
§schema_version: String§command: String§ok: bool§error: ErrorEnvelopeTrait Implementations§
Source§impl Clone for JsonEnvelopeError
impl Clone for JsonEnvelopeError
Source§fn clone(&self) -> JsonEnvelopeError
fn clone(&self) -> JsonEnvelopeError
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 JsonEnvelopeError
impl Debug for JsonEnvelopeError
Auto Trait Implementations§
impl Freeze for JsonEnvelopeError
impl RefUnwindSafe for JsonEnvelopeError
impl Send for JsonEnvelopeError
impl Sync for JsonEnvelopeError
impl Unpin for JsonEnvelopeError
impl UnsafeUnpin for JsonEnvelopeError
impl UnwindSafe for JsonEnvelopeError
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