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