pub enum EnableUserError {
InvalidAccountStatus(String),
ResourceNotFound(String),
}
Expand description
Errors returned by EnableUser
Variants§
InvalidAccountStatus(String)
The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support.
ResourceNotFound(String)
The specified resource was not found.
Implementations§
Source§impl EnableUserError
impl EnableUserError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<EnableUserError>
Trait Implementations§
Source§impl Debug for EnableUserError
impl Debug for EnableUserError
Source§impl Display for EnableUserError
impl Display for EnableUserError
Source§impl Error for EnableUserError
impl Error for EnableUserError
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 EnableUserError
impl PartialEq for EnableUserError
impl StructuralPartialEq for EnableUserError
Auto Trait Implementations§
impl Freeze for EnableUserError
impl RefUnwindSafe for EnableUserError
impl Send for EnableUserError
impl Sync for EnableUserError
impl Unpin for EnableUserError
impl UnwindSafe for EnableUserError
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