pub struct Config<'a> {
pub dry_run: bool,
pub force_author: bool,
pub force_detach: bool,
pub base: Option<&'a str>,
pub and_rebase: bool,
pub rebase_options: &'a Vec<&'a str>,
pub whole_file: bool,
pub one_fixup_per_commit: bool,
pub message: Option<&'a str>,
}
Fields§
§dry_run: bool
§force_detach: bool
§base: Option<&'a str>
§and_rebase: bool
§rebase_options: &'a Vec<&'a str>
§whole_file: bool
§one_fixup_per_commit: bool
§message: Option<&'a str>
Auto Trait Implementations§
impl<'a> Freeze for Config<'a>
impl<'a> RefUnwindSafe for Config<'a>
impl<'a> Send for Config<'a>
impl<'a> Sync for Config<'a>
impl<'a> Unpin for Config<'a>
impl<'a> UnwindSafe for Config<'a>
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