pub struct MachinesComputeMachineStatus {Show 16 fields
pub machine_id: String,
pub status: String,
pub capacity_group: String,
pub zone: String,
pub public_ip: Option<String>,
pub overlay_ip: Option<String>,
pub last_heartbeat: String,
pub horizond_version: Option<String>,
pub replica_count: i64,
pub cpu_cores: Option<f64>,
pub memory_bytes: Option<i64>,
pub drain_force: bool,
pub drain_requested_at: Option<String>,
pub drain_deadline_at: Option<String>,
pub drained_at: Option<String>,
pub drain_blockers: Vec<ComputeDrainBlocker>,
}Fields§
§machine_id: String§status: String§capacity_group: String§zone: String§public_ip: Option<String>§overlay_ip: Option<String>§last_heartbeat: String§horizond_version: Option<String>§replica_count: i64§cpu_cores: Option<f64>§memory_bytes: Option<i64>§drain_force: bool§drain_requested_at: Option<String>§drain_deadline_at: Option<String>§drained_at: Option<String>§drain_blockers: Vec<ComputeDrainBlocker>Trait Implementations§
Source§impl Clone for MachinesComputeMachineStatus
impl Clone for MachinesComputeMachineStatus
Source§fn clone(&self) -> MachinesComputeMachineStatus
fn clone(&self) -> MachinesComputeMachineStatus
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 MachinesComputeMachineStatus
impl Debug for MachinesComputeMachineStatus
Source§impl<'de> Deserialize<'de> for MachinesComputeMachineStatus
impl<'de> Deserialize<'de> for MachinesComputeMachineStatus
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 MachinesComputeMachineStatus
impl PartialEq for MachinesComputeMachineStatus
Source§fn eq(&self, other: &MachinesComputeMachineStatus) -> bool
fn eq(&self, other: &MachinesComputeMachineStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MachinesComputeMachineStatus
Auto Trait Implementations§
impl Freeze for MachinesComputeMachineStatus
impl RefUnwindSafe for MachinesComputeMachineStatus
impl Send for MachinesComputeMachineStatus
impl Sync for MachinesComputeMachineStatus
impl Unpin for MachinesComputeMachineStatus
impl UnsafeUnpin for MachinesComputeMachineStatus
impl UnwindSafe for MachinesComputeMachineStatus
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