pub struct LevelingOptions {
pub strategy: LevelingStrategy,
pub max_project_delay_factor: Option<f64>,
}Expand description
Leveling configuration (explicit user choice)
Fields§
§strategy: LevelingStrategyStrategy for selecting tasks to delay
max_project_delay_factor: Option<f64>Maximum allowed project duration increase factor (e.g., 2.0 = can’t double duration)
Trait Implementations§
Source§impl Clone for LevelingOptions
impl Clone for LevelingOptions
Source§fn clone(&self) -> LevelingOptions
fn clone(&self) -> LevelingOptions
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 LevelingOptions
impl Debug for LevelingOptions
Auto Trait Implementations§
impl Freeze for LevelingOptions
impl RefUnwindSafe for LevelingOptions
impl Send for LevelingOptions
impl Sync for LevelingOptions
impl Unpin for LevelingOptions
impl UnwindSafe for LevelingOptions
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