pub struct ApsErrorResponse {
pub error_code: Option<String>,
pub description: Option<String>,
pub detail: Option<String>,
pub reason: Option<String>,
pub developer_message: Option<String>,
}Expand description
Common APS API error response structure
Fields§
§error_code: Option<String>§description: Option<String>§detail: Option<String>§reason: Option<String>§developer_message: Option<String>Trait Implementations§
Source§impl Debug for ApsErrorResponse
impl Debug for ApsErrorResponse
Source§impl<'de> Deserialize<'de> for ApsErrorResponse
impl<'de> Deserialize<'de> for ApsErrorResponse
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 ApsErrorResponse
impl RefUnwindSafe for ApsErrorResponse
impl Send for ApsErrorResponse
impl Sync for ApsErrorResponse
impl Unpin for ApsErrorResponse
impl UnsafeUnpin for ApsErrorResponse
impl UnwindSafe for ApsErrorResponse
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