pub enum DescribeFileSystemsError {
BadRequest(String),
FileSystemNotFound(String),
InternalServerError(String),
}Expand description
Errors returned by DescribeFileSystems
Variants§
BadRequest(String)
A generic error indicating a failure with a client request.
FileSystemNotFound(String)
No Amazon FSx file systems were found based upon supplied parameters.
InternalServerError(String)
A generic error indicating a server-side failure.
Implementations§
Source§impl DescribeFileSystemsError
impl DescribeFileSystemsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeFileSystemsError>
Trait Implementations§
Source§impl Debug for DescribeFileSystemsError
impl Debug for DescribeFileSystemsError
Source§impl Display for DescribeFileSystemsError
impl Display for DescribeFileSystemsError
Source§impl Error for DescribeFileSystemsError
impl Error for DescribeFileSystemsError
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 DescribeFileSystemsError
impl PartialEq for DescribeFileSystemsError
impl StructuralPartialEq for DescribeFileSystemsError
Auto Trait Implementations§
impl Freeze for DescribeFileSystemsError
impl RefUnwindSafe for DescribeFileSystemsError
impl Send for DescribeFileSystemsError
impl Sync for DescribeFileSystemsError
impl Unpin for DescribeFileSystemsError
impl UnwindSafe for DescribeFileSystemsError
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