pub enum FleetWorkerStatus {
Unknown,
Online,
Busy,
Offline,
Unhealthy,
Draining,
Retired,
}Expand description
Runtime status of a worker.
Variants§
Trait Implementations§
Source§impl Clone for FleetWorkerStatus
impl Clone for FleetWorkerStatus
Source§fn clone(&self) -> FleetWorkerStatus
fn clone(&self) -> FleetWorkerStatus
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 FleetWorkerStatus
impl Debug for FleetWorkerStatus
Source§impl<'de> Deserialize<'de> for FleetWorkerStatus
impl<'de> Deserialize<'de> for FleetWorkerStatus
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 FleetWorkerStatus
Source§impl PartialEq for FleetWorkerStatus
impl PartialEq for FleetWorkerStatus
Source§fn eq(&self, other: &FleetWorkerStatus) -> bool
fn eq(&self, other: &FleetWorkerStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FleetWorkerStatus
impl Serialize for FleetWorkerStatus
impl StructuralPartialEq for FleetWorkerStatus
Auto Trait Implementations§
impl Freeze for FleetWorkerStatus
impl RefUnwindSafe for FleetWorkerStatus
impl Send for FleetWorkerStatus
impl Sync for FleetWorkerStatus
impl Unpin for FleetWorkerStatus
impl UnsafeUnpin for FleetWorkerStatus
impl UnwindSafe for FleetWorkerStatus
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