pub enum DescribeBackupError {
BackupNotFound(String),
InternalServerError(String),
}
Expand description
Errors returned by DescribeBackup
Variants§
BackupNotFound(String)
Backup not found for the given BackupARN.
InternalServerError(String)
An error occurred on the server side.
Implementations§
Source§impl DescribeBackupError
impl DescribeBackupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeBackupError>
Trait Implementations§
Source§impl Debug for DescribeBackupError
impl Debug for DescribeBackupError
Source§impl Display for DescribeBackupError
impl Display for DescribeBackupError
Source§impl Error for DescribeBackupError
impl Error for DescribeBackupError
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 DescribeBackupError
impl PartialEq for DescribeBackupError
impl StructuralPartialEq for DescribeBackupError
Auto Trait Implementations§
impl Freeze for DescribeBackupError
impl RefUnwindSafe for DescribeBackupError
impl Send for DescribeBackupError
impl Sync for DescribeBackupError
impl Unpin for DescribeBackupError
impl UnwindSafe for DescribeBackupError
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