pub struct GetHostInventoryRequest {
pub host_id: String,
pub lattice_id: String,
}
Expand description
A request to query the inventory of a given host within a given lattice
Fields§
§host_id: String
The public key of the host being targeted for this request
lattice_id: String
The ID of the lattice for this request
Trait Implementations§
source§impl Clone for GetHostInventoryRequest
impl Clone for GetHostInventoryRequest
source§fn clone(&self) -> GetHostInventoryRequest
fn clone(&self) -> GetHostInventoryRequest
Returns a copy 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 GetHostInventoryRequest
impl Debug for GetHostInventoryRequest
source§impl Default for GetHostInventoryRequest
impl Default for GetHostInventoryRequest
source§fn default() -> GetHostInventoryRequest
fn default() -> GetHostInventoryRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetHostInventoryRequest
impl<'de> Deserialize<'de> for GetHostInventoryRequest
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<GetHostInventoryRequest> for GetHostInventoryRequest
impl PartialEq<GetHostInventoryRequest> for GetHostInventoryRequest
source§fn eq(&self, other: &GetHostInventoryRequest) -> bool
fn eq(&self, other: &GetHostInventoryRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.