pub struct ComponentsSchemasBaseError {
pub status_code: i32,
pub error_code: String,
pub message: Box<Message>,
pub response_id: Option<String>,
}Fields§
§status_code: i32§error_code: String§message: Box<Message>§response_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ComponentsSchemasBaseError
impl Clone for ComponentsSchemasBaseError
Source§fn clone(&self) -> ComponentsSchemasBaseError
fn clone(&self) -> ComponentsSchemasBaseError
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 ComponentsSchemasBaseError
impl Debug for ComponentsSchemasBaseError
Source§impl Default for ComponentsSchemasBaseError
impl Default for ComponentsSchemasBaseError
Source§fn default() -> ComponentsSchemasBaseError
fn default() -> ComponentsSchemasBaseError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComponentsSchemasBaseError
impl<'de> Deserialize<'de> for ComponentsSchemasBaseError
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 ComponentsSchemasBaseError
impl PartialEq for ComponentsSchemasBaseError
Source§fn eq(&self, other: &ComponentsSchemasBaseError) -> bool
fn eq(&self, other: &ComponentsSchemasBaseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ComponentsSchemasBaseError
Auto Trait Implementations§
impl Freeze for ComponentsSchemasBaseError
impl RefUnwindSafe for ComponentsSchemasBaseError
impl Send for ComponentsSchemasBaseError
impl Sync for ComponentsSchemasBaseError
impl Unpin for ComponentsSchemasBaseError
impl UnsafeUnpin for ComponentsSchemasBaseError
impl UnwindSafe for ComponentsSchemasBaseError
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