pub enum CompletionResolution {
Incomplete,
Complete,
FailedPending,
FailedComplete,
}Expand description
Topology-wide resolution for one submitted transition.
Variants§
Incomplete
At least one rank is still executing and no rank failed.
Complete
Every rank completed successfully.
FailedPending
At least one rank failed while another remains incomplete.
FailedComplete
At least one rank failed and every rank reached an exact terminal state.
Trait Implementations§
Source§impl Clone for CompletionResolution
impl Clone for CompletionResolution
Source§fn clone(&self) -> CompletionResolution
fn clone(&self) -> CompletionResolution
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 CompletionResolution
Source§impl Debug for CompletionResolution
impl Debug for CompletionResolution
impl Eq for CompletionResolution
Source§impl PartialEq for CompletionResolution
impl PartialEq for CompletionResolution
impl StructuralPartialEq for CompletionResolution
Auto Trait Implementations§
impl Freeze for CompletionResolution
impl RefUnwindSafe for CompletionResolution
impl Send for CompletionResolution
impl Sync for CompletionResolution
impl Unpin for CompletionResolution
impl UnsafeUnpin for CompletionResolution
impl UnwindSafe for CompletionResolution
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