pub struct Arg<'a> {
pub file: &'a str,
pub destrepo: &'a str,
pub rev: &'a [&'a str],
pub branch: &'a [&'a str],
pub base: &'a [&'a str],
pub all: bool,
pub force: bool,
pub typ: &'a str,
pub ssh: &'a str,
pub remotecmd: &'a str,
pub insecure: bool,
}Fields§
§file: &'a str§destrepo: &'a str§rev: &'a [&'a str]§branch: &'a [&'a str]§base: &'a [&'a str]§all: bool§force: bool§typ: &'a str§ssh: &'a str§remotecmd: &'a str§insecure: boolTrait 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