pub struct ApiErrorEnvelope {
pub error: ApiError,
}Expand description
Failed API response envelope.
Fields§
§error: ApiErrorImplementations§
Trait Implementations§
Source§impl Clone for ApiErrorEnvelope
impl Clone for ApiErrorEnvelope
Source§fn clone(&self) -> ApiErrorEnvelope
fn clone(&self) -> ApiErrorEnvelope
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 ApiErrorEnvelope
impl Debug for ApiErrorEnvelope
Source§impl<'de> Deserialize<'de> for ApiErrorEnvelope
impl<'de> Deserialize<'de> for ApiErrorEnvelope
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
impl Eq for ApiErrorEnvelope
Source§impl PartialEq for ApiErrorEnvelope
impl PartialEq for ApiErrorEnvelope
Source§impl Serialize for ApiErrorEnvelope
impl Serialize for ApiErrorEnvelope
impl StructuralPartialEq for ApiErrorEnvelope
Auto Trait Implementations§
impl Freeze for ApiErrorEnvelope
impl RefUnwindSafe for ApiErrorEnvelope
impl Send for ApiErrorEnvelope
impl Sync for ApiErrorEnvelope
impl Unpin for ApiErrorEnvelope
impl UnsafeUnpin for ApiErrorEnvelope
impl UnwindSafe for ApiErrorEnvelope
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