pub struct ResetOptions {
pub re_execute: bool,
pub prompt: Option<String>,
pub branch: Option<String>,
}Expand description
Options for spec reset
Fields§
§re_execute: boolWhether to re-execute the spec after reset
prompt: Option<String>Optional prompt template for re-execution
branch: Option<String>Optional branch to use for re-execution
Trait Implementations§
Source§impl Clone for ResetOptions
impl Clone for ResetOptions
Source§fn clone(&self) -> ResetOptions
fn clone(&self) -> ResetOptions
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 moreSource§impl Debug for ResetOptions
impl Debug for ResetOptions
Source§impl Default for ResetOptions
impl Default for ResetOptions
Source§fn default() -> ResetOptions
fn default() -> ResetOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResetOptions
impl RefUnwindSafe for ResetOptions
impl Send for ResetOptions
impl Sync for ResetOptions
impl Unpin for ResetOptions
impl UnwindSafe for ResetOptions
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