pub struct AliasRemote {
pub alias: String,
pub repo: String,
/* private fields */
}Expand description
An SSH endpoint whose effective configuration has not been evaluated. Any host spelling can be remapped by OpenSSH, including dotted aliases.
Fields§
§alias: StringThe alias exactly as the remote spells it (validated host characters only, so it cannot become an option later).
repo: StringImplementations§
Trait Implementations§
Source§impl Clone for AliasRemote
impl Clone for AliasRemote
Source§fn clone(&self) -> AliasRemote
fn clone(&self) -> AliasRemote
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 AliasRemote
impl Debug for AliasRemote
impl Eq for AliasRemote
Source§impl PartialEq for AliasRemote
impl PartialEq for AliasRemote
impl StructuralPartialEq for AliasRemote
Auto Trait Implementations§
impl Freeze for AliasRemote
impl RefUnwindSafe for AliasRemote
impl Send for AliasRemote
impl Sync for AliasRemote
impl Unpin for AliasRemote
impl UnsafeUnpin for AliasRemote
impl UnwindSafe for AliasRemote
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