pub struct GoogleErrorData {
pub error: GoogleErrorDetail,
}Expand description
Body of a Google error response: {error: {code, message, status, details}}.
Fields§
§error: GoogleErrorDetailThe error object.
Trait Implementations§
Source§impl Clone for GoogleErrorData
impl Clone for GoogleErrorData
Source§fn clone(&self) -> GoogleErrorData
fn clone(&self) -> GoogleErrorData
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 GoogleErrorData
impl Debug for GoogleErrorData
Source§impl<'de> Deserialize<'de> for GoogleErrorData
impl<'de> Deserialize<'de> for GoogleErrorData
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
Auto Trait Implementations§
impl Freeze for GoogleErrorData
impl RefUnwindSafe for GoogleErrorData
impl Send for GoogleErrorData
impl Sync for GoogleErrorData
impl Unpin for GoogleErrorData
impl UnsafeUnpin for GoogleErrorData
impl UnwindSafe for GoogleErrorData
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