pub enum DescribeDataRepositoryTasksError {
BadRequest(String),
DataRepositoryTaskNotFound(String),
FileSystemNotFound(String),
InternalServerError(String),
}Expand description
Errors returned by DescribeDataRepositoryTasks
Variants§
BadRequest(String)
A generic error indicating a failure with a client request.
DataRepositoryTaskNotFound(String)
The data repository task or tasks you specified could not be found.
FileSystemNotFound(String)
No Amazon FSx file systems were found based upon supplied parameters.
InternalServerError(String)
A generic error indicating a server-side failure.
Implementations§
Trait Implementations§
Source§impl Error for DescribeDataRepositoryTasksError
impl Error for DescribeDataRepositoryTasksError
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 DescribeDataRepositoryTasksError
impl PartialEq for DescribeDataRepositoryTasksError
Source§fn eq(&self, other: &DescribeDataRepositoryTasksError) -> bool
fn eq(&self, other: &DescribeDataRepositoryTasksError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeDataRepositoryTasksError
Auto Trait Implementations§
impl Freeze for DescribeDataRepositoryTasksError
impl RefUnwindSafe for DescribeDataRepositoryTasksError
impl Send for DescribeDataRepositoryTasksError
impl Sync for DescribeDataRepositoryTasksError
impl Unpin for DescribeDataRepositoryTasksError
impl UnwindSafe for DescribeDataRepositoryTasksError
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