pub enum DescribeSecretError {
InternalServiceError(String),
ResourceNotFound(String),
}
Expand description
Errors returned by DescribeSecret
Variants§
InternalServiceError(String)
An error occurred on the server side.
ResourceNotFound(String)
We can't find the resource that you asked for.
Implementations§
Source§impl DescribeSecretError
impl DescribeSecretError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeSecretError>
Trait Implementations§
Source§impl Debug for DescribeSecretError
impl Debug for DescribeSecretError
Source§impl Display for DescribeSecretError
impl Display for DescribeSecretError
Source§impl Error for DescribeSecretError
impl Error for DescribeSecretError
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 DescribeSecretError
impl PartialEq for DescribeSecretError
impl StructuralPartialEq for DescribeSecretError
Auto Trait Implementations§
impl Freeze for DescribeSecretError
impl RefUnwindSafe for DescribeSecretError
impl Send for DescribeSecretError
impl Sync for DescribeSecretError
impl Unpin for DescribeSecretError
impl UnwindSafe for DescribeSecretError
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