pub struct RefSpec {
pub force: bool,
pub negative: bool,
pub src: Option<String>,
pub dst: Option<String>,
pub pattern: bool,
}Fields§
§force: bool§negative: bool§src: Option<String>§dst: Option<String>§pattern: boolTrait Implementations§
impl Eq for RefSpec
impl StructuralPartialEq for RefSpec
Auto Trait Implementations§
impl Freeze for RefSpec
impl RefUnwindSafe for RefSpec
impl Send for RefSpec
impl Sync for RefSpec
impl Unpin for RefSpec
impl UnsafeUnpin for RefSpec
impl UnwindSafe for RefSpec
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