pub enum DeleteMountTargetError {
BadRequest(String),
DependencyTimeout(String),
InternalServerError(String),
MountTargetNotFound(String),
}Expand description
Errors returned by DeleteMountTarget
Variants§
BadRequest(String)
Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.
DependencyTimeout(String)
The service timed out trying to fulfill the request, and the client should try the call again.
InternalServerError(String)
Returned if an error occurred on the server side.
MountTargetNotFound(String)
Returned if there is no mount target with the specified ID found in the caller's account.
Implementations§
Source§impl DeleteMountTargetError
impl DeleteMountTargetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteMountTargetError>
Trait Implementations§
Source§impl Debug for DeleteMountTargetError
impl Debug for DeleteMountTargetError
Source§impl Display for DeleteMountTargetError
impl Display for DeleteMountTargetError
Source§impl Error for DeleteMountTargetError
impl Error for DeleteMountTargetError
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 DeleteMountTargetError
impl PartialEq for DeleteMountTargetError
impl StructuralPartialEq for DeleteMountTargetError
Auto Trait Implementations§
impl Freeze for DeleteMountTargetError
impl RefUnwindSafe for DeleteMountTargetError
impl Send for DeleteMountTargetError
impl Sync for DeleteMountTargetError
impl Unpin for DeleteMountTargetError
impl UnwindSafe for DeleteMountTargetError
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