Enum aries_askar::StoreKeyMethod
source · pub enum StoreKeyMethod {
DeriveKey(KdfMethod),
RawKey,
Unprotected,
}Expand description
Supported methods for generating or referencing a new store key
Variants§
DeriveKey(KdfMethod)
Derive a new wrapping key using a key derivation function
RawKey
Wrap using an externally-managed raw key
Unprotected
No wrapping key in effect
Trait Implementations§
source§impl Clone for StoreKeyMethod
impl Clone for StoreKeyMethod
source§fn clone(&self) -> StoreKeyMethod
fn clone(&self) -> StoreKeyMethod
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StoreKeyMethod
impl Debug for StoreKeyMethod
source§impl Default for StoreKeyMethod
impl Default for StoreKeyMethod
source§impl Hash for StoreKeyMethod
impl Hash for StoreKeyMethod
source§impl PartialEq<StoreKeyMethod> for StoreKeyMethod
impl PartialEq<StoreKeyMethod> for StoreKeyMethod
source§fn eq(&self, other: &StoreKeyMethod) -> bool
fn eq(&self, other: &StoreKeyMethod) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for StoreKeyMethod
impl StructuralEq for StoreKeyMethod
impl StructuralPartialEq for StoreKeyMethod
Auto Trait Implementations§
impl RefUnwindSafe for StoreKeyMethod
impl Send for StoreKeyMethod
impl Sync for StoreKeyMethod
impl Unpin for StoreKeyMethod
impl UnwindSafe for StoreKeyMethod
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.