pub struct Arg<'a> {
pub patches: &'a [&'a str],
pub strip: Option<u32>,
pub force: bool,
pub nocommit: bool,
pub bypass: bool,
pub exact: bool,
pub importbranch: bool,
pub message: &'a str,
pub date: &'a str,
pub user: &'a str,
pub similarity: Option<u8>,
}
Fields§
§patches: &'a [&'a str]
§strip: Option<u32>
§force: bool
§nocommit: bool
§bypass: bool
§exact: bool
§importbranch: bool
§message: &'a str
§date: &'a str
§user: &'a str
§similarity: Option<u8>
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