#[non_exhaustive]pub enum KeyResidency {
ProcessMemory,
}Expand description
Residency of secret key material used by this dispatch package.
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.
ProcessMemory
Secret material resides in caller or provider process memory.
Trait Implementations§
Source§impl Clone for KeyResidency
impl Clone for KeyResidency
Source§fn clone(&self) -> KeyResidency
fn clone(&self) -> KeyResidency
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 KeyResidency
Source§impl Debug for KeyResidency
impl Debug for KeyResidency
impl Eq for KeyResidency
Source§impl PartialEq for KeyResidency
impl PartialEq for KeyResidency
impl StructuralPartialEq for KeyResidency
Auto Trait Implementations§
impl Freeze for KeyResidency
impl RefUnwindSafe for KeyResidency
impl Send for KeyResidency
impl Sync for KeyResidency
impl Unpin for KeyResidency
impl UnsafeUnpin for KeyResidency
impl UnwindSafe for KeyResidency
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