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