#[non_exhaustive]pub enum Operation {
Show 41 variants
Create = 1,
CreateKeyPair = 2,
Register = 3,
Rekey = 4,
DeriveKey = 5,
Certify = 6,
Recertify = 7,
Locate = 8,
Check = 9,
Get = 10,
GetAttributes = 11,
GetAttributeList = 12,
AddAttribute = 13,
ModifyAttribute = 14,
DeleteAttribute = 15,
ObtainLease = 16,
GetUsageAllocation = 17,
Activate = 18,
Revoke = 19,
Destroy = 20,
Archive = 21,
Recover = 22,
Validate = 23,
Query = 24,
Cancel = 25,
Poll = 26,
Notify = 27,
Put = 28,
RekeyKeyPair = 29,
DiscoverVersions = 30,
Encrypt = 31,
Decrypt = 32,
Sign = 33,
SignatureVerify = 34,
MAC = 35,
MACVerify = 36,
RNGRetrieve = 37,
RNGSeed = 38,
Hash = 39,
CreateSplitKey = 40,
JoinSplitKey = 41,
}
Expand description
See KMIP 1.0 section 9.1.3.2.26 Operation Enumeration.
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.
Create = 1
CreateKeyPair = 2
Register = 3
Rekey = 4
DeriveKey = 5
Certify = 6
Recertify = 7
Locate = 8
Check = 9
Get = 10
GetAttributes = 11
GetAttributeList = 12
AddAttribute = 13
ModifyAttribute = 14
DeleteAttribute = 15
ObtainLease = 16
GetUsageAllocation = 17
Activate = 18
Revoke = 19
Destroy = 20
Archive = 21
Recover = 22
Validate = 23
Query = 24
Cancel = 25
Poll = 26
Notify = 27
Put = 28
RekeyKeyPair = 29
DiscoverVersions = 30
Encrypt = 31
Decrypt = 32
Sign = 33
SignatureVerify = 34
MAC = 35
MACVerify = 36
RNGRetrieve = 37
RNGSeed = 38
Hash = 39
CreateSplitKey = 40
JoinSplitKey = 41
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Operation
impl<'de> Deserialize<'de> for Operation
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
impl Copy for Operation
impl Eq for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnwindSafe for Operation
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