pub struct CreateKeyPairResponsePayload {
pub private_key_unique_identifier: UniqueIdentifier,
pub public_key_unique_identifier: UniqueIdentifier,
}
Expand description
See KMIP 1.0 section 4.2 Create Key Pair.
Fields§
§private_key_unique_identifier: UniqueIdentifier
§public_key_unique_identifier: UniqueIdentifier
Trait Implementations§
Source§impl Clone for CreateKeyPairResponsePayload
impl Clone for CreateKeyPairResponsePayload
Source§fn clone(&self) -> CreateKeyPairResponsePayload
fn clone(&self) -> CreateKeyPairResponsePayload
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 CreateKeyPairResponsePayload
impl Debug for CreateKeyPairResponsePayload
Source§impl<'de> Deserialize<'de> for CreateKeyPairResponsePayload
impl<'de> Deserialize<'de> for CreateKeyPairResponsePayload
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 PartialEq for CreateKeyPairResponsePayload
impl PartialEq for CreateKeyPairResponsePayload
Source§fn eq(&self, other: &CreateKeyPairResponsePayload) -> bool
fn eq(&self, other: &CreateKeyPairResponsePayload) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for CreateKeyPairResponsePayload
impl StructuralPartialEq for CreateKeyPairResponsePayload
Auto Trait Implementations§
impl Freeze for CreateKeyPairResponsePayload
impl RefUnwindSafe for CreateKeyPairResponsePayload
impl Send for CreateKeyPairResponsePayload
impl Sync for CreateKeyPairResponsePayload
impl Unpin for CreateKeyPairResponsePayload
impl UnwindSafe for CreateKeyPairResponsePayload
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