pub struct Arg<'a> {
pub dest: &'a str,
pub rev: &'a [&'a str],
pub force: bool,
pub bookmark: &'a [&'a str],
pub branch: &'a [&'a str],
pub newbranch: &'a str,
pub ssh: &'a str,
pub remotecmd: &'a str,
pub insecure: bool,
}
Fields§
§dest: &'a str
§rev: &'a [&'a str]
§force: bool
§bookmark: &'a [&'a str]
§branch: &'a [&'a str]
§newbranch: &'a str
§ssh: &'a str
§remotecmd: &'a str
§insecure: 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