Enum kmip_protocol::types::response::ResponsePayload [−][src]
#[non_exhaustive]
pub enum ResponsePayload {
Show 17 variants
Create(CreateResponsePayload),
CreateKeyPair(CreateKeyPairResponsePayload),
Register(RegisterResponsePayload),
Locate(LocateResponsePayload),
Get(GetResponsePayload),
GetAttributes(GetAttributesResponsePayload),
GetAttributeList(GetAttributeListResponsePayload),
AddAttribute(AddAttributeResponsePayload),
ModifyAttribute(ModifyAttributeResponsePayload),
DeleteAttribute(DeleteAttributeResponsePayload),
Activate(ActivateResponsePayload),
Revoke(RevokeResponsePayload),
Destroy(DestroyResponsePayload),
Query(QueryResponsePayload),
DiscoverVersions(DiscoverVersionsResponsePayload),
Sign(SignResponsePayload),
RNGRetrieve(RNGRetrieveResponsePayload),
}
Expand description
See KMIP 1.0 section 7.2 Operations.
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(CreateResponsePayload)
Tuple Fields of Create
CreateKeyPair(CreateKeyPairResponsePayload)
Tuple Fields of CreateKeyPair
Register(RegisterResponsePayload)
Tuple Fields of Register
Locate(LocateResponsePayload)
Tuple Fields of Locate
Get(GetResponsePayload)
Tuple Fields of Get
GetAttributes(GetAttributesResponsePayload)
Tuple Fields of GetAttributes
GetAttributeList(GetAttributeListResponsePayload)
Tuple Fields of GetAttributeList
AddAttribute(AddAttributeResponsePayload)
Tuple Fields of AddAttribute
ModifyAttribute(ModifyAttributeResponsePayload)
Tuple Fields of ModifyAttribute
DeleteAttribute(DeleteAttributeResponsePayload)
Tuple Fields of DeleteAttribute
Activate(ActivateResponsePayload)
Tuple Fields of Activate
Revoke(RevokeResponsePayload)
Tuple Fields of Revoke
Destroy(DestroyResponsePayload)
Tuple Fields of Destroy
Query(QueryResponsePayload)
Tuple Fields of Query
DiscoverVersions(DiscoverVersionsResponsePayload)
Tuple Fields of DiscoverVersions
Sign(SignResponsePayload)
Tuple Fields of Sign
RNGRetrieve(RNGRetrieveResponsePayload)
Tuple Fields of RNGRetrieve
Trait Implementations
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ResponsePayload
impl Send for ResponsePayload
impl Sync for ResponsePayload
impl Unpin for ResponsePayload
impl UnwindSafe for ResponsePayload
Blanket Implementations
Mutably borrows from an owned value. Read more