pub struct RebaseOptions {
pub interactive: bool,
pub autosquash: bool,
pub extra_args: ExtraArgs,
}Expand description
Controls rebase behavior.
Fields§
§interactive: boolWhether to request an interactive rebase.
autosquash: boolWhether to enable autosquash semantics.
extra_args: ExtraArgsImplementation-specific passthrough arguments.
Trait Implementations§
Source§impl Clone for RebaseOptions
impl Clone for RebaseOptions
Source§fn clone(&self) -> RebaseOptions
fn clone(&self) -> RebaseOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RebaseOptions
impl Debug for RebaseOptions
Source§impl Default for RebaseOptions
impl Default for RebaseOptions
Source§fn default() -> RebaseOptions
fn default() -> RebaseOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RebaseOptions
impl RefUnwindSafe for RebaseOptions
impl Send for RebaseOptions
impl Sync for RebaseOptions
impl Unpin for RebaseOptions
impl UnsafeUnpin for RebaseOptions
impl UnwindSafe for RebaseOptions
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