pub struct ConsoleApiErrorEnvelope {
pub code: String,
pub message: String,
pub retryable: bool,
pub status: u16,
pub request_id: String,
}Fields§
§code: String§message: String§retryable: bool§status: u16§request_id: StringTrait Implementations§
Source§impl Clone for ConsoleApiErrorEnvelope
impl Clone for ConsoleApiErrorEnvelope
Source§fn clone(&self) -> ConsoleApiErrorEnvelope
fn clone(&self) -> ConsoleApiErrorEnvelope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConsoleApiErrorEnvelope
impl Debug for ConsoleApiErrorEnvelope
Source§impl<'de> Deserialize<'de> for ConsoleApiErrorEnvelope
impl<'de> Deserialize<'de> for ConsoleApiErrorEnvelope
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConsoleApiErrorEnvelope
impl PartialEq for ConsoleApiErrorEnvelope
Source§fn eq(&self, other: &ConsoleApiErrorEnvelope) -> bool
fn eq(&self, other: &ConsoleApiErrorEnvelope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConsoleApiErrorEnvelope
impl Serialize for ConsoleApiErrorEnvelope
impl Eq for ConsoleApiErrorEnvelope
impl StructuralPartialEq for ConsoleApiErrorEnvelope
Auto Trait Implementations§
impl Freeze for ConsoleApiErrorEnvelope
impl RefUnwindSafe for ConsoleApiErrorEnvelope
impl Send for ConsoleApiErrorEnvelope
impl Sync for ConsoleApiErrorEnvelope
impl Unpin for ConsoleApiErrorEnvelope
impl UnsafeUnpin for ConsoleApiErrorEnvelope
impl UnwindSafe for ConsoleApiErrorEnvelope
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