pub struct APIErrorType {
pub error_code: Option<String>,
pub message: Option<String>,
pub secret_id: Option<String>,
}Expand description
Secrets Manager APIErrorType.
Fields§
§error_code: Option<String>§message: Option<String>§secret_id: Option<String>Trait Implementations§
Source§impl Clone for APIErrorType
impl Clone for APIErrorType
Source§fn clone(&self) -> APIErrorType
fn clone(&self) -> APIErrorType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for APIErrorType
impl Debug for APIErrorType
Source§impl Default for APIErrorType
impl Default for APIErrorType
Source§fn default() -> APIErrorType
fn default() -> APIErrorType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for APIErrorType
impl<'de> Deserialize<'de> for APIErrorType
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 APIErrorType
impl RefUnwindSafe for APIErrorType
impl Send for APIErrorType
impl Sync for APIErrorType
impl Unpin for APIErrorType
impl UnsafeUnpin for APIErrorType
impl UnwindSafe for APIErrorType
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