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