pub struct FlakeConfig {
pub threads: Option<usize>,
pub features: Option<String>,
pub prefix: Option<String>,
pub iterations: Option<u16>,
pub tolerable_failures: Option<u16>,
}Expand description
cargo flake – a tool to detect flakey tests
Fields§
§threads: Option<usize>total global thread count
features: Option<String>space separated feature list
prefix: Option<String>only run tests with this prefix
iterations: Option<u16>how many times to run individual tests
tolerable_failures: Option<u16>how many tests are allowed to fail
Trait Implementations§
Source§impl Debug for FlakeConfig
impl Debug for FlakeConfig
Source§impl FromArgs for FlakeConfig
impl FromArgs for FlakeConfig
Source§impl SubCommand for FlakeConfig
impl SubCommand for FlakeConfig
Source§const COMMAND: &'static CommandInfo
const COMMAND: &'static CommandInfo
Information about the subcommand.
Auto Trait Implementations§
impl Freeze for FlakeConfig
impl RefUnwindSafe for FlakeConfig
impl Send for FlakeConfig
impl Sync for FlakeConfig
impl Unpin for FlakeConfig
impl UnwindSafe for FlakeConfig
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
Source§impl<T> SubCommands for Twhere
T: SubCommand,
impl<T> SubCommands for Twhere
T: SubCommand,
Source§const COMMANDS: &'static [&'static CommandInfo<'static>]
const COMMANDS: &'static [&'static CommandInfo<'static>]
Info for the commands.