pub enum CopyWorkspaceImageError {
AccessDenied(String),
InvalidParameterValues(String),
OperationNotSupported(String),
ResourceAlreadyExists(String),
ResourceLimitExceeded(String),
ResourceNotFound(String),
ResourceUnavailable(String),
}Expand description
Errors returned by CopyWorkspaceImage
Variants§
AccessDenied(String)
The user is not authorized to access a resource.
InvalidParameterValues(String)
One or more parameter values are not valid.
OperationNotSupported(String)
This operation is not supported.
ResourceAlreadyExists(String)
The specified resource already exists.
ResourceLimitExceeded(String)
Your resource limits have been exceeded.
ResourceNotFound(String)
The resource could not be found.
The specified resource is not available.
Implementations§
Source§impl CopyWorkspaceImageError
impl CopyWorkspaceImageError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CopyWorkspaceImageError>
Trait Implementations§
Source§impl Debug for CopyWorkspaceImageError
impl Debug for CopyWorkspaceImageError
Source§impl Display for CopyWorkspaceImageError
impl Display for CopyWorkspaceImageError
Source§impl Error for CopyWorkspaceImageError
impl Error for CopyWorkspaceImageError
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 CopyWorkspaceImageError
impl PartialEq for CopyWorkspaceImageError
impl StructuralPartialEq for CopyWorkspaceImageError
Auto Trait Implementations§
impl Freeze for CopyWorkspaceImageError
impl RefUnwindSafe for CopyWorkspaceImageError
impl Send for CopyWorkspaceImageError
impl Sync for CopyWorkspaceImageError
impl Unpin for CopyWorkspaceImageError
impl UnwindSafe for CopyWorkspaceImageError
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