#[non_exhaustive]pub enum SecretResolveError {
Denied,
}Expand description
Bounded failure categories for a caller-owned secret provider.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Denied
The caller did not authorize this request.
Trait Implementations§
Source§impl Clone for SecretResolveError
impl Clone for SecretResolveError
Source§fn clone(&self) -> SecretResolveError
fn clone(&self) -> SecretResolveError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SecretResolveError
Source§impl Debug for SecretResolveError
impl Debug for SecretResolveError
impl Eq for SecretResolveError
Source§impl PartialEq for SecretResolveError
impl PartialEq for SecretResolveError
impl StructuralPartialEq for SecretResolveError
Auto Trait Implementations§
impl Freeze for SecretResolveError
impl RefUnwindSafe for SecretResolveError
impl Send for SecretResolveError
impl Sync for SecretResolveError
impl Unpin for SecretResolveError
impl UnsafeUnpin for SecretResolveError
impl UnwindSafe for SecretResolveError
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