[][src]Enum t_rust_less_lib::secrets_store::SecretStoreError

pub enum SecretStoreError {
    Locked,
    Forbidden,
    InvalidPassphrase,
    AlreadyUnlocked,
    Conflict,
    KeyDerivation(String),
    Cipher(String),
    IO(String),
    NoRecipient,
    Padding,
    Mutex(String),
    BlockStore(StoreError),
    InvalidStoreUrl(String),
    Json(String),
    InvalidRecipient(String),
    MissingPrivateKey(String),
    NotFound,
}

Variants

Locked
Forbidden
InvalidPassphrase
AlreadyUnlocked
Conflict
KeyDerivation(String)
Cipher(String)
IO(String)
NoRecipient
Padding
Mutex(String)
BlockStore(StoreError)
InvalidStoreUrl(String)
Json(String)
InvalidRecipient(String)
MissingPrivateKey(String)
NotFound

Trait Implementations

impl Debug for SecretStoreError[src]

impl<'de> Deserialize<'de> for SecretStoreError[src]

impl Display for SecretStoreError[src]

impl Eq for SecretStoreError[src]

impl Error for SecretStoreError[src]

impl From<DecryptError> for SecretStoreError[src]

impl From<Error> for SecretStoreError[src]

impl From<Error> for SecretStoreError[src]

impl From<Error> for SecretStoreError[src]

impl From<Error> for SecretStoreError[src]

impl From<ErrorStack> for SecretStoreError[src]

impl From<NotInSchema> for SecretStoreError[src]

impl<T> From<PoisonError<T>> for SecretStoreError[src]

impl From<SecretStoreError> for ServiceError[src]

impl From<StoreError> for SecretStoreError[src]

impl Into<Error> for SecretStoreError[src]

impl PartialEq<SecretStoreError> for SecretStoreError[src]

impl Serialize for SecretStoreError[src]

impl StructuralEq for SecretStoreError[src]

impl StructuralPartialEq for SecretStoreError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,