pub enum BisectAction {
Start {
bad: String,
good: String,
},
Good,
Bad,
Skip,
Reset,
Status,
}
Expand description
Bisect workflow actions
Variants§
Trait Implementations§
Source§impl Clone for BisectAction
impl Clone for BisectAction
Source§fn clone(&self) -> BisectAction
fn clone(&self) -> BisectAction
Returns a duplicate 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 BisectAction
impl RefUnwindSafe for BisectAction
impl Send for BisectAction
impl Sync for BisectAction
impl Unpin for BisectAction
impl UnwindSafe for BisectAction
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