pub struct RunnerConfig {
pub root: PathBuf,
pub dry_run: bool,
pub timeout: Option<Duration>,
pub jobs: usize,
pub json: bool,
pub quiet: bool,
}Expand description
Configuration for creating a Runner.
Fields§
§root: PathBuf§dry_run: bool§timeout: Option<Duration>§jobs: usize§json: bool§quiet: boolAuto Trait Implementations§
impl Freeze for RunnerConfig
impl RefUnwindSafe for RunnerConfig
impl Send for RunnerConfig
impl Sync for RunnerConfig
impl Unpin for RunnerConfig
impl UnsafeUnpin for RunnerConfig
impl UnwindSafe for RunnerConfig
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