pub struct QueryResponsePayload {
pub operations: Option<Vec<Operation>>,
pub object_types: Option<Vec<ObjectType>>,
pub vendor_identification: Option<String>,
pub server_information: Option<ServerInformation>,
}
Expand description
See KMIP 1.0 section 4.24 Query.
Fields§
§operations: Option<Vec<Operation>>
§object_types: Option<Vec<ObjectType>>
§vendor_identification: Option<String>
§server_information: Option<ServerInformation>
Trait Implementations§
Source§impl Clone for QueryResponsePayload
impl Clone for QueryResponsePayload
Source§fn clone(&self) -> QueryResponsePayload
fn clone(&self) -> QueryResponsePayload
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 QueryResponsePayload
impl Debug for QueryResponsePayload
Source§impl<'de> Deserialize<'de> for QueryResponsePayload
impl<'de> Deserialize<'de> for QueryResponsePayload
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 QueryResponsePayload
impl PartialEq for QueryResponsePayload
impl Eq for QueryResponsePayload
impl StructuralPartialEq for QueryResponsePayload
Auto Trait Implementations§
impl Freeze for QueryResponsePayload
impl RefUnwindSafe for QueryResponsePayload
impl Send for QueryResponsePayload
impl Sync for QueryResponsePayload
impl Unpin for QueryResponsePayload
impl UnwindSafe for QueryResponsePayload
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