pub enum FactoryRunSettledStatus {
Completed,
Halted,
Cancelled,
Error,
Unknown,
}Expand description
Terminal status a factory run committed. A settled run is never pending or running, so those two members of the run-status domain are deliberately absent.
Variants§
Completed
The factory body resolved and its result was committed.
Halted
The run was stopped by a limit, an approval refusal or another policy decision.
Cancelled
The run was cancelled by its caller or by session disposal.
Error
The run failed, with failureType carrying the class when it has one.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for FactoryRunSettledStatus
impl Clone for FactoryRunSettledStatus
Source§fn clone(&self) -> FactoryRunSettledStatus
fn clone(&self) -> FactoryRunSettledStatus
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 FactoryRunSettledStatus
impl Debug for FactoryRunSettledStatus
Source§impl Default for FactoryRunSettledStatus
impl Default for FactoryRunSettledStatus
Source§fn default() -> FactoryRunSettledStatus
fn default() -> FactoryRunSettledStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryRunSettledStatus
impl<'de> Deserialize<'de> for FactoryRunSettledStatus
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 FactoryRunSettledStatus
Source§impl PartialEq for FactoryRunSettledStatus
impl PartialEq for FactoryRunSettledStatus
Source§impl Serialize for FactoryRunSettledStatus
impl Serialize for FactoryRunSettledStatus
impl StructuralPartialEq for FactoryRunSettledStatus
Auto Trait Implementations§
impl Freeze for FactoryRunSettledStatus
impl RefUnwindSafe for FactoryRunSettledStatus
impl Send for FactoryRunSettledStatus
impl Sync for FactoryRunSettledStatus
impl Unpin for FactoryRunSettledStatus
impl UnsafeUnpin for FactoryRunSettledStatus
impl UnwindSafe for FactoryRunSettledStatus
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.