Struct jj_lib::rewrite::RebaseOptions
source · pub struct RebaseOptions {
pub empty: EmptyBehaviour,
pub simplify_ancestor_merge: bool,
}
Expand description
Controls the configuration of a rebase.
Fields§
§empty: EmptyBehaviour
§simplify_ancestor_merge: bool
If a merge commit would end up with one parent being an ancestor of the other, then filter out the ancestor.
Trait Implementations§
source§impl Clone for RebaseOptions
impl Clone for RebaseOptions
source§fn clone(&self) -> RebaseOptions
fn clone(&self) -> RebaseOptions
Returns a copy 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 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
source§impl PartialEq for RebaseOptions
impl PartialEq for RebaseOptions
source§fn eq(&self, other: &RebaseOptions) -> bool
fn eq(&self, other: &RebaseOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RebaseOptions
impl StructuralPartialEq for RebaseOptions
Auto Trait Implementations§
impl Freeze for RebaseOptions
impl RefUnwindSafe for RebaseOptions
impl Send for RebaseOptions
impl Sync for RebaseOptions
impl Unpin 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