pub struct Error400 {
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
Error400 : Client error 400, bad request.
Fields§
§error_code: Option<String>The code of the error that has occurred. This field may not be returned for some errors.
error_message: Option<String>The human-readable description of the error that has occurred.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Error400
impl<'de> Deserialize<'de> for Error400
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 StructuralPartialEq for Error400
Auto Trait Implementations§
impl Freeze for Error400
impl RefUnwindSafe for Error400
impl Send for Error400
impl Sync for Error400
impl Unpin for Error400
impl UnsafeUnpin for Error400
impl UnwindSafe for Error400
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