pub enum BatchMode {
Auto,
Never,
Aggressive,
}Expand description
Batching mode for grouping related files in build-refactor.
Variants§
Auto
Group files in same directory with similar names (e.g., test files with source).
Never
Create individual task per file.
Aggressive
Group all files in same module/directory.
Trait Implementations§
impl Copy for BatchMode
Auto Trait Implementations§
impl Freeze for BatchMode
impl RefUnwindSafe for BatchMode
impl Send for BatchMode
impl Sync for BatchMode
impl Unpin for BatchMode
impl UnsafeUnpin for BatchMode
impl UnwindSafe for BatchMode
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