pub enum KeyOperation {
Sign,
Verify,
Encrypt,
Decrypt,
WrapKey,
UnwrapKey,
DeriveKey,
DeriveBits,
}Variants§
Trait Implementations§
Source§impl Clone for KeyOperation
impl Clone for KeyOperation
Source§fn clone(&self) -> KeyOperation
fn clone(&self) -> KeyOperation
Returns a duplicate 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 KeyOperation
impl Debug for KeyOperation
Source§impl From<KeyOperation> for Label
impl From<KeyOperation> for Label
Source§fn from(id: KeyOperation) -> Label
fn from(id: KeyOperation) -> Label
Converts to this type from the input type.
Source§impl TryFrom<Label> for KeyOperation
impl TryFrom<Label> for KeyOperation
impl Copy for KeyOperation
Auto Trait Implementations§
impl Freeze for KeyOperation
impl RefUnwindSafe for KeyOperation
impl Send for KeyOperation
impl Sync for KeyOperation
impl Unpin for KeyOperation
impl UnwindSafe for KeyOperation
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