pub enum StatusType {
Waiting,
Undeployed,
Reconciling,
Deployed,
Failed,
Unhealthy,
}
Expand description
All possible status types
Variants§
Trait Implementations§
Source§impl Add for StatusType
impl Add for StatusType
Source§impl Clone for StatusType
impl Clone for StatusType
Source§fn clone(&self) -> StatusType
fn clone(&self) -> StatusType
Returns a copy of the value. Read more
1.0.0 · 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 StatusType
impl Debug for StatusType
Source§impl Default for StatusType
impl Default for StatusType
Source§fn default() -> StatusType
fn default() -> StatusType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatusType
impl<'de> Deserialize<'de> for StatusType
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 From<StatusType> for StatusType
impl From<StatusType> for StatusType
Source§fn from(status: StatusType) -> Self
fn from(status: StatusType) -> Self
Converts to this type from the input type.
Source§impl From<StatusType> for StatusType
impl From<StatusType> for StatusType
Source§fn from(status: StatusType) -> Self
fn from(status: StatusType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StatusType
impl PartialEq for StatusType
Source§impl Serialize for StatusType
impl Serialize for StatusType
Source§impl Sum for StatusType
impl Sum for StatusType
impl Copy for StatusType
impl Eq for StatusType
impl StructuralPartialEq for StatusType
Auto Trait Implementations§
impl Freeze for StatusType
impl RefUnwindSafe for StatusType
impl Send for StatusType
impl Sync for StatusType
impl Unpin for StatusType
impl UnwindSafe for StatusType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.