pub enum RoutineStrategy {
Unit(BlueprintStrategy<UnitRoutine>),
Plane(BlueprintStrategy<PlaneRoutine>),
Ruda(BlueprintStrategy<RudaRoutine>),
}Variants§
Unit(BlueprintStrategy<UnitRoutine>)
A unit is responsible to reduce a full vector.
Plane(BlueprintStrategy<PlaneRoutine>)
A plane is responsible to reduce a full vector.
Ruda(BlueprintStrategy<RudaRoutine>)
A ruda is responsible to reduce a full vector.
Trait Implementations§
Source§impl Clone for RoutineStrategy
impl Clone for RoutineStrategy
Auto Trait Implementations§
impl Freeze for RoutineStrategy
impl RefUnwindSafe for RoutineStrategy
impl Send for RoutineStrategy
impl Sync for RoutineStrategy
impl Unpin for RoutineStrategy
impl UnsafeUnpin for RoutineStrategy
impl UnwindSafe for RoutineStrategy
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