pub enum DeleteFileSystemError {
BadRequest(String),
FileSystemInUse(String),
FileSystemNotFound(String),
InternalServerError(String),
}Expand description
Errors returned by DeleteFileSystem
Variants§
BadRequest(String)
Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.
FileSystemInUse(String)
Returned if a file system has mount targets.
FileSystemNotFound(String)
Returned if the specified FileSystemId value doesn't exist in the requester's AWS account.
InternalServerError(String)
Returned if an error occurred on the server side.
Implementations§
Source§impl DeleteFileSystemError
impl DeleteFileSystemError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteFileSystemError>
Trait Implementations§
Source§impl Debug for DeleteFileSystemError
impl Debug for DeleteFileSystemError
Source§impl Display for DeleteFileSystemError
impl Display for DeleteFileSystemError
Source§impl Error for DeleteFileSystemError
impl Error for DeleteFileSystemError
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 DeleteFileSystemError
impl PartialEq for DeleteFileSystemError
impl StructuralPartialEq for DeleteFileSystemError
Auto Trait Implementations§
impl Freeze for DeleteFileSystemError
impl RefUnwindSafe for DeleteFileSystemError
impl Send for DeleteFileSystemError
impl Sync for DeleteFileSystemError
impl Unpin for DeleteFileSystemError
impl UnwindSafe for DeleteFileSystemError
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