Enum jsonwebtoken::jwk::KeyOperations
source · pub enum KeyOperations {
Sign,
Verify,
Encrypt,
Decrypt,
WrapKey,
UnwrapKey,
DeriveKey,
DeriveBits,
Other(String),
}
Expand description
Operations that the key is intended to be used for. This enum is serialized untagged
Variants§
Sign
Computer digital signature or MAC
Verify
Verify digital signature or MAC
Encrypt
Encrypt content
Decrypt
Decrypt content and validate decryption, if applicable
WrapKey
Encrypt key
UnwrapKey
Decrypt key and validate decryption, if applicable
DeriveKey
Derive key
DeriveBits
Derive bits not to be used as a key
Other(String)
Other operation
Trait Implementations§
source§impl Clone for KeyOperations
impl Clone for KeyOperations
source§fn clone(&self) -> KeyOperations
fn clone(&self) -> KeyOperations
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 KeyOperations
impl Debug for KeyOperations
source§impl<'de> Deserialize<'de> for KeyOperations
impl<'de> Deserialize<'de> for KeyOperations
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 Hash for KeyOperations
impl Hash for KeyOperations
source§impl PartialEq<KeyOperations> for KeyOperations
impl PartialEq<KeyOperations> for KeyOperations
source§fn eq(&self, other: &KeyOperations) -> bool
fn eq(&self, other: &KeyOperations) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for KeyOperations
impl Serialize for KeyOperations
impl Eq for KeyOperations
impl StructuralEq for KeyOperations
impl StructuralPartialEq for KeyOperations
Auto Trait Implementations§
impl RefUnwindSafe for KeyOperations
impl Send for KeyOperations
impl Sync for KeyOperations
impl Unpin for KeyOperations
impl UnwindSafe for KeyOperations
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