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.
Tuple Fields of Create
Tuple Fields of CreateKeyPair
Tuple Fields of Register
Tuple Fields of Locate
Tuple Fields of Get
Tuple Fields of GetAttributes
Tuple Fields of GetAttributeList
Tuple Fields of AddAttribute
Tuple Fields of ModifyAttribute
Tuple Fields of DeleteAttribute
Tuple Fields of Activate
Tuple Fields of Revoke
Tuple Fields of Destroy
Tuple Fields of Query
Tuple Fields of DiscoverVersions
Tuple Fields of Sign
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