pub enum GetDigestError {
InvalidParameter(String),
ResourceNotFound(String),
ResourcePreconditionNotMet(String),
}Expand description
Errors returned by GetDigest
Variants§
InvalidParameter(String)
One or more parameters in the request aren't valid.
ResourceNotFound(String)
The specified resource doesn't exist.
ResourcePreconditionNotMet(String)
The operation failed because a condition wasn't satisfied in advance.
Implementations§
Source§impl GetDigestError
impl GetDigestError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetDigestError>
Trait Implementations§
Source§impl Debug for GetDigestError
impl Debug for GetDigestError
Source§impl Display for GetDigestError
impl Display for GetDigestError
Source§impl Error for GetDigestError
impl Error for GetDigestError
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 GetDigestError
impl PartialEq for GetDigestError
impl StructuralPartialEq for GetDigestError
Auto Trait Implementations§
impl Freeze for GetDigestError
impl RefUnwindSafe for GetDigestError
impl Send for GetDigestError
impl Sync for GetDigestError
impl Unpin for GetDigestError
impl UnwindSafe for GetDigestError
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