pub struct MachinesDaemonHeartbeatData {Show 15 fields
pub status: WorkloadHeartbeatStatus,
pub horizon_cluster_id: String,
pub daemon_name: String,
pub horizon_status: String,
pub horizon_status_reason: Option<String>,
pub horizon_status_message: Option<String>,
pub capacity_group: String,
pub desired_machines: u32,
pub assigned_machines: u32,
pub healthy_instances: u32,
pub unavailable_instances: u32,
pub command_supported: bool,
pub latest_update_timestamp: String,
pub daemon_instances: Vec<ManagedRuntimeUnitStatus>,
pub events: Vec<ManagedRuntimeEventSnapshot>,
}Fields§
§status: WorkloadHeartbeatStatus§horizon_cluster_id: String§daemon_name: String§horizon_status: String§horizon_status_reason: Option<String>§horizon_status_message: Option<String>§capacity_group: String§desired_machines: u32§assigned_machines: u32§healthy_instances: u32§command_supported: bool§latest_update_timestamp: String§daemon_instances: Vec<ManagedRuntimeUnitStatus>§events: Vec<ManagedRuntimeEventSnapshot>Trait Implementations§
Source§impl Clone for MachinesDaemonHeartbeatData
impl Clone for MachinesDaemonHeartbeatData
Source§fn clone(&self) -> MachinesDaemonHeartbeatData
fn clone(&self) -> MachinesDaemonHeartbeatData
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 MachinesDaemonHeartbeatData
impl Debug for MachinesDaemonHeartbeatData
Source§impl<'de> Deserialize<'de> for MachinesDaemonHeartbeatData
impl<'de> Deserialize<'de> for MachinesDaemonHeartbeatData
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 MachinesDaemonHeartbeatData
impl PartialEq for MachinesDaemonHeartbeatData
Source§fn eq(&self, other: &MachinesDaemonHeartbeatData) -> bool
fn eq(&self, other: &MachinesDaemonHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MachinesDaemonHeartbeatData
Auto Trait Implementations§
impl Freeze for MachinesDaemonHeartbeatData
impl RefUnwindSafe for MachinesDaemonHeartbeatData
impl Send for MachinesDaemonHeartbeatData
impl Sync for MachinesDaemonHeartbeatData
impl Unpin for MachinesDaemonHeartbeatData
impl UnsafeUnpin for MachinesDaemonHeartbeatData
impl UnwindSafe for MachinesDaemonHeartbeatData
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