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