pub struct ServiceInventory {
pub host_id: String,
pub observed_at_ms: i64,
pub services: Vec<Service>,
}Fields§
§host_id: String§observed_at_ms: i64§services: Vec<Service>Trait Implementations§
Source§impl Clone for ServiceInventory
impl Clone for ServiceInventory
Source§fn clone(&self) -> ServiceInventory
fn clone(&self) -> ServiceInventory
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 ServiceInventory
impl Debug for ServiceInventory
Source§impl<'de> Deserialize<'de> for ServiceInventory
impl<'de> Deserialize<'de> for ServiceInventory
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
impl Eq for ServiceInventory
Source§impl PartialEq for ServiceInventory
impl PartialEq for ServiceInventory
Source§impl Serialize for ServiceInventory
impl Serialize for ServiceInventory
impl StructuralPartialEq for ServiceInventory
Auto Trait Implementations§
impl Freeze for ServiceInventory
impl RefUnwindSafe for ServiceInventory
impl Send for ServiceInventory
impl Sync for ServiceInventory
impl Unpin for ServiceInventory
impl UnsafeUnpin for ServiceInventory
impl UnwindSafe for ServiceInventory
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