pub enum DeleteArchiveError {
InvalidParameterValue(String),
MissingParameterValue(String),
ResourceNotFound(String),
ServiceUnavailable(String),
}
Expand description
Errors returned by DeleteArchive
Variants§
InvalidParameterValue(String)
Returned if a parameter of the request is incorrectly specified.
MissingParameterValue(String)
Returned if a required header or parameter is missing from the request.
ResourceNotFound(String)
Returned if the specified resource (such as a vault, upload ID, or job ID) doesn't exist.
Returned if the service cannot complete the request.
Implementations§
Source§impl DeleteArchiveError
impl DeleteArchiveError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteArchiveError>
Trait Implementations§
Source§impl Debug for DeleteArchiveError
impl Debug for DeleteArchiveError
Source§impl Display for DeleteArchiveError
impl Display for DeleteArchiveError
Source§impl Error for DeleteArchiveError
impl Error for DeleteArchiveError
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 DeleteArchiveError
impl PartialEq for DeleteArchiveError
impl StructuralPartialEq for DeleteArchiveError
Auto Trait Implementations§
impl Freeze for DeleteArchiveError
impl RefUnwindSafe for DeleteArchiveError
impl Send for DeleteArchiveError
impl Sync for DeleteArchiveError
impl Unpin for DeleteArchiveError
impl UnwindSafe for DeleteArchiveError
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