pub enum GetConfigError {
CloudHsmInternal(String),
CloudHsmService(String),
InvalidRequest(String),
}Expand description
Errors returned by GetConfig
Variants§
CloudHsmInternal(String)
Indicates that an internal error occurred.
CloudHsmService(String)
Indicates that an exception occurred in the AWS CloudHSM service.
InvalidRequest(String)
Indicates that one or more of the request parameters are not valid.
Implementations§
Source§impl GetConfigError
impl GetConfigError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetConfigError>
Trait Implementations§
Source§impl Debug for GetConfigError
impl Debug for GetConfigError
Source§impl Display for GetConfigError
impl Display for GetConfigError
Source§impl Error for GetConfigError
impl Error for GetConfigError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for GetConfigError
impl PartialEq for GetConfigError
impl StructuralPartialEq for GetConfigError
Auto Trait Implementations§
impl Freeze for GetConfigError
impl RefUnwindSafe for GetConfigError
impl Send for GetConfigError
impl Sync for GetConfigError
impl Unpin for GetConfigError
impl UnwindSafe for GetConfigError
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