pub enum Jobs {
Serial,
Threads(NonZeroUsize),
}Expand description
How many jobs to run at once.
Variants§
Serial
One job at a time, in order. What -j1 asks for, and what the determinism check in
CI compares against.
Threads(NonZeroUsize)
At most this many at once.
Implementations§
Trait Implementations§
impl Copy for Jobs
impl Eq for Jobs
impl StructuralPartialEq for Jobs
Auto Trait Implementations§
impl Freeze for Jobs
impl RefUnwindSafe for Jobs
impl Send for Jobs
impl Sync for Jobs
impl Unpin for Jobs
impl UnsafeUnpin for Jobs
impl UnwindSafe for Jobs
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