pub enum FullyForcedTailDecision {
Execute,
Skip {
predictions: usize,
},
}Expand description
Validated result of checking whether the unexecuted group tail is skippable.
Variants§
Execute
At least one remaining unit must execute.
Skip
Every remaining unit corresponds exactly to one forced decision.
Trait Implementations§
Source§impl Clone for FullyForcedTailDecision
impl Clone for FullyForcedTailDecision
Source§fn clone(&self) -> FullyForcedTailDecision
fn clone(&self) -> FullyForcedTailDecision
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 FullyForcedTailDecision
Source§impl Debug for FullyForcedTailDecision
impl Debug for FullyForcedTailDecision
impl Eq for FullyForcedTailDecision
Source§impl PartialEq for FullyForcedTailDecision
impl PartialEq for FullyForcedTailDecision
impl StructuralPartialEq for FullyForcedTailDecision
Auto Trait Implementations§
impl Freeze for FullyForcedTailDecision
impl RefUnwindSafe for FullyForcedTailDecision
impl Send for FullyForcedTailDecision
impl Sync for FullyForcedTailDecision
impl Unpin for FullyForcedTailDecision
impl UnsafeUnpin for FullyForcedTailDecision
impl UnwindSafe for FullyForcedTailDecision
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