pub enum CombinedStatus {
Stopped,
Provisioning,
Unavailable,
Standby,
AwaitingApproval,
Initializing,
Bootstrapping,
Replaying,
Paused,
Running,
Suspended,
Stopping,
}Expand description
CombinedStatus
JSON schema
{
"type": "string",
"enum": [
"Stopped",
"Provisioning",
"Unavailable",
"Standby",
"AwaitingApproval",
"Initializing",
"Bootstrapping",
"Replaying",
"Paused",
"Running",
"Suspended",
"Stopping"
]
}Variants§
Stopped
Provisioning
Standby
AwaitingApproval
Initializing
Bootstrapping
Replaying
Paused
Running
Suspended
Stopping
Trait Implementations§
Source§impl Clone for CombinedStatus
impl Clone for CombinedStatus
Source§fn clone(&self) -> CombinedStatus
fn clone(&self) -> CombinedStatus
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 CombinedStatus
impl Debug for CombinedStatus
Source§impl<'de> Deserialize<'de> for CombinedStatus
impl<'de> Deserialize<'de> for CombinedStatus
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<&CombinedStatus> for CombinedStatus
impl From<&CombinedStatus> for CombinedStatus
Source§fn from(value: &CombinedStatus) -> Self
fn from(value: &CombinedStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for CombinedStatus
impl FromStr for CombinedStatus
Source§impl Hash for CombinedStatus
impl Hash for CombinedStatus
Source§impl Ord for CombinedStatus
impl Ord for CombinedStatus
Source§fn cmp(&self, other: &CombinedStatus) -> Ordering
fn cmp(&self, other: &CombinedStatus) -> 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 CombinedStatus
impl PartialEq for CombinedStatus
Source§impl PartialOrd for CombinedStatus
impl PartialOrd for CombinedStatus
Source§impl Serialize for CombinedStatus
impl Serialize for CombinedStatus
Source§impl ToString for CombinedStatus
impl ToString for CombinedStatus
Source§impl TryFrom<&String> for CombinedStatus
impl TryFrom<&String> for CombinedStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for CombinedStatus
impl TryFrom<&str> for CombinedStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for CombinedStatus
impl TryFrom<String> for CombinedStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for CombinedStatus
impl Eq for CombinedStatus
impl StructuralPartialEq for CombinedStatus
Auto Trait Implementations§
impl Freeze for CombinedStatus
impl RefUnwindSafe for CombinedStatus
impl Send for CombinedStatus
impl Sync for CombinedStatus
impl Unpin for CombinedStatus
impl UnwindSafe for CombinedStatus
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.