pub struct PushRefs(pub Vec<(String, String)>, pub Vec<(String, String)>);
Expand description
Results of a parsing refs from porcelain git push output example command: git push –porcelain origin ‘refs/heads/*’ 2>/dev/null
Tuple Fields§
§0: Vec<(String, String)>
§1: Vec<(String, String)>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PushRefs
impl RefUnwindSafe for PushRefs
impl Send for PushRefs
impl Sync for PushRefs
impl Unpin for PushRefs
impl UnwindSafe for PushRefs
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