pub struct Error401 {
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
Error401 : Client error 401, unauthorized.
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 Error401
impl<'de> Deserialize<'de> for Error401
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 Error401
Auto Trait Implementations§
impl Freeze for Error401
impl RefUnwindSafe for Error401
impl Send for Error401
impl Sync for Error401
impl Unpin for Error401
impl UnsafeUnpin for Error401
impl UnwindSafe for Error401
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