pub struct Arg<'a> {
pub message: &'a str,
pub logfile: &'a str,
pub addremove: bool,
pub closebranch: bool,
pub date: &'a str,
pub user: &'a str,
pub include: &'a [&'a str],
pub exclude: &'a [&'a str],
pub amend: bool,
pub subrepos: bool,
pub secret: bool,
}
Fields§
§message: &'a str
§logfile: &'a str
§addremove: bool
§closebranch: bool
§date: &'a str
§user: &'a str
§include: &'a [&'a str]
§exclude: &'a [&'a str]
§amend: bool
§subrepos: bool
§secret: bool
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Arg<'a>
impl<'a> RefUnwindSafe for Arg<'a>
impl<'a> Send for Arg<'a>
impl<'a> Sync for Arg<'a>
impl<'a> Unpin for Arg<'a>
impl<'a> UnwindSafe for Arg<'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