pub enum CombinedDesiredStatus {
Stopped,
Unavailable,
Standby,
Paused,
Running,
Suspended,
}Expand description
CombinedDesiredStatus
JSON schema
{
"type": "string",
"enum": [
"Stopped",
"Unavailable",
"Standby",
"Paused",
"Running",
"Suspended"
]
}Variants§
Trait Implementations§
Source§impl Clone for CombinedDesiredStatus
impl Clone for CombinedDesiredStatus
Source§fn clone(&self) -> CombinedDesiredStatus
fn clone(&self) -> CombinedDesiredStatus
Returns a duplicate 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 CombinedDesiredStatus
impl Debug for CombinedDesiredStatus
Source§impl<'de> Deserialize<'de> for CombinedDesiredStatus
impl<'de> Deserialize<'de> for CombinedDesiredStatus
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<&CombinedDesiredStatus> for CombinedDesiredStatus
impl From<&CombinedDesiredStatus> for CombinedDesiredStatus
Source§fn from(value: &CombinedDesiredStatus) -> Self
fn from(value: &CombinedDesiredStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for CombinedDesiredStatus
impl FromStr for CombinedDesiredStatus
Source§impl Hash for CombinedDesiredStatus
impl Hash for CombinedDesiredStatus
Source§impl Ord for CombinedDesiredStatus
impl Ord for CombinedDesiredStatus
Source§fn cmp(&self, other: &CombinedDesiredStatus) -> Ordering
fn cmp(&self, other: &CombinedDesiredStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CombinedDesiredStatus
impl PartialEq for CombinedDesiredStatus
Source§impl PartialOrd for CombinedDesiredStatus
impl PartialOrd for CombinedDesiredStatus
Source§impl Serialize for CombinedDesiredStatus
impl Serialize for CombinedDesiredStatus
Source§impl ToString for CombinedDesiredStatus
impl ToString for CombinedDesiredStatus
Source§impl TryFrom<&String> for CombinedDesiredStatus
impl TryFrom<&String> for CombinedDesiredStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for CombinedDesiredStatus
impl TryFrom<&str> for CombinedDesiredStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for CombinedDesiredStatus
impl TryFrom<String> for CombinedDesiredStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for CombinedDesiredStatus
impl Eq for CombinedDesiredStatus
impl StructuralPartialEq for CombinedDesiredStatus
Auto Trait Implementations§
impl Freeze for CombinedDesiredStatus
impl RefUnwindSafe for CombinedDesiredStatus
impl Send for CombinedDesiredStatus
impl Sync for CombinedDesiredStatus
impl Unpin for CombinedDesiredStatus
impl UnwindSafe for CombinedDesiredStatus
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.