pub struct Remote {
pub name: String,
pub url: String,
pub fetch_specs: Vec<String>,
pub push_specs: Vec<String>,
}Expand description
Remote repository metadata.
Fields§
§name: StringRemote name.
url: StringRemote URL.
fetch_specs: Vec<String>Fetch refspecs.
push_specs: Vec<String>Push refspecs.
Trait Implementations§
impl Eq for Remote
impl StructuralPartialEq for Remote
Auto Trait Implementations§
impl Freeze for Remote
impl RefUnwindSafe for Remote
impl Send for Remote
impl Sync for Remote
impl Unpin for Remote
impl UnsafeUnpin for Remote
impl UnwindSafe for Remote
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