pub enum CreateLunaClientError {
CloudHsmInternal(String),
CloudHsmService(String),
InvalidRequest(String),
}Expand description
Errors returned by CreateLunaClient
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 CreateLunaClientError
impl CreateLunaClientError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateLunaClientError>
Trait Implementations§
Source§impl Debug for CreateLunaClientError
impl Debug for CreateLunaClientError
Source§impl Display for CreateLunaClientError
impl Display for CreateLunaClientError
Source§impl Error for CreateLunaClientError
impl Error for CreateLunaClientError
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 CreateLunaClientError
impl PartialEq for CreateLunaClientError
impl StructuralPartialEq for CreateLunaClientError
Auto Trait Implementations§
impl Freeze for CreateLunaClientError
impl RefUnwindSafe for CreateLunaClientError
impl Send for CreateLunaClientError
impl Sync for CreateLunaClientError
impl Unpin for CreateLunaClientError
impl UnwindSafe for CreateLunaClientError
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