pub struct AzureDaemonHeartbeatData {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 AzureDaemonHeartbeatData
impl Clone for AzureDaemonHeartbeatData
Source§fn clone(&self) -> AzureDaemonHeartbeatData
fn clone(&self) -> AzureDaemonHeartbeatData
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 AzureDaemonHeartbeatData
impl Debug for AzureDaemonHeartbeatData
Source§impl<'de> Deserialize<'de> for AzureDaemonHeartbeatData
impl<'de> Deserialize<'de> for AzureDaemonHeartbeatData
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 AzureDaemonHeartbeatData
impl PartialEq for AzureDaemonHeartbeatData
Source§fn eq(&self, other: &AzureDaemonHeartbeatData) -> bool
fn eq(&self, other: &AzureDaemonHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AzureDaemonHeartbeatData
impl Serialize for AzureDaemonHeartbeatData
impl StructuralPartialEq for AzureDaemonHeartbeatData
Auto Trait Implementations§
impl Freeze for AzureDaemonHeartbeatData
impl RefUnwindSafe for AzureDaemonHeartbeatData
impl Send for AzureDaemonHeartbeatData
impl Sync for AzureDaemonHeartbeatData
impl Unpin for AzureDaemonHeartbeatData
impl UnsafeUnpin for AzureDaemonHeartbeatData
impl UnwindSafe for AzureDaemonHeartbeatData
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