pub enum RuntimeStatus {
Unavailable,
Standby,
Initializing,
AwaitingApproval,
Bootstrapping,
Replaying,
Paused,
Running,
Suspended,
}Expand description
Runtime status of the pipeline.
Of the statuses, only Unavailable is determined by the runner. All other statuses are
determined by the pipeline and taken over by the runner.
JSON schema
{
"description": "Runtime status of the pipeline.\n\nOf the statuses, only `Unavailable` is determined by the runner. All other statuses are\ndetermined by the pipeline and taken over by the runner.",
"type": "string",
"enum": [
"Unavailable",
"Standby",
"Initializing",
"AwaitingApproval",
"Bootstrapping",
"Replaying",
"Paused",
"Running",
"Suspended"
]
}Variants§
Trait Implementations§
Source§impl Clone for RuntimeStatus
impl Clone for RuntimeStatus
Source§fn clone(&self) -> RuntimeStatus
fn clone(&self) -> RuntimeStatus
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 RuntimeStatus
impl Debug for RuntimeStatus
Source§impl<'de> Deserialize<'de> for RuntimeStatus
impl<'de> Deserialize<'de> for RuntimeStatus
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<&RuntimeStatus> for RuntimeStatus
impl From<&RuntimeStatus> for RuntimeStatus
Source§fn from(value: &RuntimeStatus) -> Self
fn from(value: &RuntimeStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for RuntimeStatus
impl FromStr for RuntimeStatus
Source§impl Hash for RuntimeStatus
impl Hash for RuntimeStatus
Source§impl Ord for RuntimeStatus
impl Ord for RuntimeStatus
Source§fn cmp(&self, other: &RuntimeStatus) -> Ordering
fn cmp(&self, other: &RuntimeStatus) -> 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 RuntimeStatus
impl PartialEq for RuntimeStatus
Source§impl PartialOrd for RuntimeStatus
impl PartialOrd for RuntimeStatus
Source§impl Serialize for RuntimeStatus
impl Serialize for RuntimeStatus
Source§impl ToString for RuntimeStatus
impl ToString for RuntimeStatus
Source§impl TryFrom<&String> for RuntimeStatus
impl TryFrom<&String> for RuntimeStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for RuntimeStatus
impl TryFrom<&str> for RuntimeStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for RuntimeStatus
impl TryFrom<String> for RuntimeStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for RuntimeStatus
impl Eq for RuntimeStatus
impl StructuralPartialEq for RuntimeStatus
Auto Trait Implementations§
impl Freeze for RuntimeStatus
impl RefUnwindSafe for RuntimeStatus
impl Send for RuntimeStatus
impl Sync for RuntimeStatus
impl Unpin for RuntimeStatus
impl UnwindSafe for RuntimeStatus
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.