pub enum CopyImageError {
IncompatibleImage(String),
InvalidAccountStatus(String),
LimitExceeded(String),
ResourceAlreadyExists(String),
ResourceNotAvailable(String),
ResourceNotFound(String),
}
Expand description
Errors returned by CopyImage
Variants§
IncompatibleImage(String)
The image does not support storage connectors.
InvalidAccountStatus(String)
The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support.
LimitExceeded(String)
The requested limit exceeds the permitted limit for an account.
ResourceAlreadyExists(String)
The specified resource already exists.
ResourceNotAvailable(String)
The specified resource exists and is not in use, but isn't available.
ResourceNotFound(String)
The specified resource was not found.
Implementations§
Source§impl CopyImageError
impl CopyImageError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CopyImageError>
Trait Implementations§
Source§impl Debug for CopyImageError
impl Debug for CopyImageError
Source§impl Display for CopyImageError
impl Display for CopyImageError
Source§impl Error for CopyImageError
impl Error for CopyImageError
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 CopyImageError
impl PartialEq for CopyImageError
impl StructuralPartialEq for CopyImageError
Auto Trait Implementations§
impl Freeze for CopyImageError
impl RefUnwindSafe for CopyImageError
impl Send for CopyImageError
impl Sync for CopyImageError
impl Unpin for CopyImageError
impl UnwindSafe for CopyImageError
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