pub struct RemoteHelperSpec {
pub name: String,
pub alias: String,
pub url: Option<String>,
}Expand description
A resolved user-owned remote-helper invocation.
Fields§
§name: StringThe suffix in git-remote-<name>.
alias: StringThe helper’s first argument (a configured remote name or literal URL).
url: Option<String>The optional helper URL argument. remote.<name>.vcs is valid without a
URL, so this is intentionally optional.
Trait Implementations§
Source§impl Clone for RemoteHelperSpec
impl Clone for RemoteHelperSpec
Source§fn clone(&self) -> RemoteHelperSpec
fn clone(&self) -> RemoteHelperSpec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RemoteHelperSpec
impl Debug for RemoteHelperSpec
impl Eq for RemoteHelperSpec
Source§impl PartialEq for RemoteHelperSpec
impl PartialEq for RemoteHelperSpec
impl StructuralPartialEq for RemoteHelperSpec
Auto Trait Implementations§
impl Freeze for RemoteHelperSpec
impl RefUnwindSafe for RemoteHelperSpec
impl Send for RemoteHelperSpec
impl Sync for RemoteHelperSpec
impl Unpin for RemoteHelperSpec
impl UnsafeUnpin for RemoteHelperSpec
impl UnwindSafe for RemoteHelperSpec
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