pub enum LayeredUnitAction {
Execute,
SkipRemainingGroup,
}Expand description
Decision returned immediately before one execution unit is acquired.
Variants§
Execute
Execute this unit normally.
SkipRemainingGroup
Omit this unit and every remaining unit in the current group.
Trait Implementations§
Source§impl Clone for LayeredUnitAction
impl Clone for LayeredUnitAction
Source§fn clone(&self) -> LayeredUnitAction
fn clone(&self) -> LayeredUnitAction
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 LayeredUnitAction
Source§impl Debug for LayeredUnitAction
impl Debug for LayeredUnitAction
impl Eq for LayeredUnitAction
Source§impl PartialEq for LayeredUnitAction
impl PartialEq for LayeredUnitAction
impl StructuralPartialEq for LayeredUnitAction
Auto Trait Implementations§
impl Freeze for LayeredUnitAction
impl RefUnwindSafe for LayeredUnitAction
impl Send for LayeredUnitAction
impl Sync for LayeredUnitAction
impl Unpin for LayeredUnitAction
impl UnsafeUnpin for LayeredUnitAction
impl UnwindSafe for LayeredUnitAction
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