Struct file_test_runner::RunOptions
source · pub struct RunOptions {
pub parallel: bool,
}
Fields§
§parallel: bool
Whether to run tests in parallel. By default, this will parallelize the tests across all available threads, minus one.
This can be overridden by setting the FILE_TEST_RUNNER_PARALLELISM
environment variable to the desired number of parallel threads.
Trait Implementations§
source§impl Clone for RunOptions
impl Clone for RunOptions
source§fn clone(&self) -> RunOptions
fn clone(&self) -> RunOptions
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for RunOptions
impl RefUnwindSafe for RunOptions
impl Send for RunOptions
impl Sync for RunOptions
impl Unpin for RunOptions
impl UnwindSafe for RunOptions
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