pub enum GetSecretError {
}
Variants§
InvalidEntityJWT(String)
InvalidHostJWT(String)
SecretNotFound
InvalidXKey
EncryptionError
DecryptionError
UpstreamError(String)
InvalidRequest
InvalidPayload
InvalidHeaders
PolicyError(String)
Other(String)
Trait Implementations§
source§impl Debug for GetSecretError
impl Debug for GetSecretError
source§impl<'de> Deserialize<'de> for GetSecretError
impl<'de> Deserialize<'de> for GetSecretError
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for GetSecretError
impl Display for GetSecretError
source§impl Error for GetSecretError
impl Error for GetSecretError
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 From<GetSecretError> for SecretResponse
impl From<GetSecretError> for SecretResponse
source§fn from(e: GetSecretError) -> Self
fn from(e: GetSecretError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetSecretError
impl RefUnwindSafe for GetSecretError
impl Send for GetSecretError
impl Sync for GetSecretError
impl Unpin for GetSecretError
impl UnwindSafe for GetSecretError
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