pub struct BisectOptions {
pub range: Option<String>,
pub regenerate: bool,
}Expand description
Options for the bisect command.
Fields§
§range: Option<String>Limit the search to a git revision range (e.g. “abc123..def456”).
regenerate: boolRegenerate tests at each commit instead of using the current manifest.
Auto Trait Implementations§
impl Freeze for BisectOptions
impl RefUnwindSafe for BisectOptions
impl Send for BisectOptions
impl Sync for BisectOptions
impl Unpin for BisectOptions
impl UnsafeUnpin for BisectOptions
impl UnwindSafe for BisectOptions
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