pub enum LevelingStrategy {
CriticalPathFirst,
}Expand description
Strategy for selecting which tasks to delay during leveling
Variants§
CriticalPathFirst
Delay non-critical tasks before critical ones (default)
Trait Implementations§
Source§impl Clone for LevelingStrategy
impl Clone for LevelingStrategy
Source§fn clone(&self) -> LevelingStrategy
fn clone(&self) -> LevelingStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LevelingStrategy
impl Debug for LevelingStrategy
Source§impl PartialEq for LevelingStrategy
impl PartialEq for LevelingStrategy
impl Copy for LevelingStrategy
impl Eq for LevelingStrategy
impl StructuralPartialEq for LevelingStrategy
Auto Trait Implementations§
impl Freeze for LevelingStrategy
impl RefUnwindSafe for LevelingStrategy
impl Send for LevelingStrategy
impl Sync for LevelingStrategy
impl Unpin for LevelingStrategy
impl UnwindSafe for LevelingStrategy
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