pub enum FactoryRunStatus {
Pending,
Running,
Completed,
Halted,
Cancelled,
Error,
Unknown,
}Expand description
Current or terminal state of a factory run.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Pending
The run was minted and is awaiting approval.
Running
The run is executing.
Completed
The run completed successfully.
Halted
The run was interrupted while resource budget remained.
Cancelled
The run was cancelled before completion.
Error
The factory body failed or reached a cumulative resource ceiling.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for FactoryRunStatus
impl Clone for FactoryRunStatus
Source§fn clone(&self) -> FactoryRunStatus
fn clone(&self) -> FactoryRunStatus
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 FactoryRunStatus
impl Debug for FactoryRunStatus
Source§impl Default for FactoryRunStatus
impl Default for FactoryRunStatus
Source§fn default() -> FactoryRunStatus
fn default() -> FactoryRunStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryRunStatus
impl<'de> Deserialize<'de> for FactoryRunStatus
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 FactoryRunStatus
Source§impl PartialEq for FactoryRunStatus
impl PartialEq for FactoryRunStatus
Source§impl Serialize for FactoryRunStatus
impl Serialize for FactoryRunStatus
impl StructuralPartialEq for FactoryRunStatus
Auto Trait Implementations§
impl Freeze for FactoryRunStatus
impl RefUnwindSafe for FactoryRunStatus
impl Send for FactoryRunStatus
impl Sync for FactoryRunStatus
impl Unpin for FactoryRunStatus
impl UnsafeUnpin for FactoryRunStatus
impl UnwindSafe for FactoryRunStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.