pub enum PhaseOutcome {
Ok,
Failed,
}Expand description
How a phase barrier finished.
Variants§
Ok
Every target cleared the barrier.
Failed
The barrier failed (at least one target did not clear it); the run does not advance past a failed barrier.
Trait Implementations§
Source§impl Clone for PhaseOutcome
impl Clone for PhaseOutcome
Source§fn clone(&self) -> PhaseOutcome
fn clone(&self) -> PhaseOutcome
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 moreimpl Copy for PhaseOutcome
Source§impl Debug for PhaseOutcome
impl Debug for PhaseOutcome
Source§impl<'de> Deserialize<'de> for PhaseOutcome
impl<'de> Deserialize<'de> for PhaseOutcome
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 PhaseOutcome
Source§impl PartialEq for PhaseOutcome
impl PartialEq for PhaseOutcome
Source§impl Serialize for PhaseOutcome
impl Serialize for PhaseOutcome
impl StructuralPartialEq for PhaseOutcome
Auto Trait Implementations§
impl Freeze for PhaseOutcome
impl RefUnwindSafe for PhaseOutcome
impl Send for PhaseOutcome
impl Sync for PhaseOutcome
impl Unpin for PhaseOutcome
impl UnsafeUnpin for PhaseOutcome
impl UnwindSafe for PhaseOutcome
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,
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.