pub struct GetAttributesResponsePayload {
pub unique_identifier: UniqueIdentifier,
pub attributes: Option<Vec<Attribute>>,
}
Expand description
See KMIP 1.0 section 4.11 Get Attributes.
Fields§
§unique_identifier: UniqueIdentifier
§attributes: Option<Vec<Attribute>>
Trait Implementations§
Source§impl Clone for GetAttributesResponsePayload
impl Clone for GetAttributesResponsePayload
Source§fn clone(&self) -> GetAttributesResponsePayload
fn clone(&self) -> GetAttributesResponsePayload
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 GetAttributesResponsePayload
impl Debug for GetAttributesResponsePayload
Source§impl<'de> Deserialize<'de> for GetAttributesResponsePayload
impl<'de> Deserialize<'de> for GetAttributesResponsePayload
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 GetAttributesResponsePayload
impl PartialEq for GetAttributesResponsePayload
Source§fn eq(&self, other: &GetAttributesResponsePayload) -> bool
fn eq(&self, other: &GetAttributesResponsePayload) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for GetAttributesResponsePayload
impl StructuralPartialEq for GetAttributesResponsePayload
Auto Trait Implementations§
impl Freeze for GetAttributesResponsePayload
impl RefUnwindSafe for GetAttributesResponsePayload
impl Send for GetAttributesResponsePayload
impl Sync for GetAttributesResponsePayload
impl Unpin for GetAttributesResponsePayload
impl UnwindSafe for GetAttributesResponsePayload
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