pub struct RegisterResponsePayload {
pub unique_identifier: UniqueIdentifier,
pub template_attributes: Option<Vec<TemplateAttribute>>,
}Expand description
See KMIP 1.0 section 4.3 Register.
Fields§
§unique_identifier: UniqueIdentifier§template_attributes: Option<Vec<TemplateAttribute>>Trait Implementations§
Source§impl Clone for RegisterResponsePayload
impl Clone for RegisterResponsePayload
Source§fn clone(&self) -> RegisterResponsePayload
fn clone(&self) -> RegisterResponsePayload
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RegisterResponsePayload
impl Debug for RegisterResponsePayload
Source§impl<'de> Deserialize<'de> for RegisterResponsePayload
impl<'de> Deserialize<'de> for RegisterResponsePayload
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 RegisterResponsePayload
impl PartialEq for RegisterResponsePayload
Source§fn eq(&self, other: &RegisterResponsePayload) -> bool
fn eq(&self, other: &RegisterResponsePayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RegisterResponsePayload
impl StructuralPartialEq for RegisterResponsePayload
Auto Trait Implementations§
impl Freeze for RegisterResponsePayload
impl RefUnwindSafe for RegisterResponsePayload
impl Send for RegisterResponsePayload
impl Sync for RegisterResponsePayload
impl Unpin for RegisterResponsePayload
impl UnsafeUnpin for RegisterResponsePayload
impl UnwindSafe for RegisterResponsePayload
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