Enum git_transport::client::ssh::ProgramKind
source · pub enum ProgramKind {
Ssh,
Plink,
Putty,
TortoisePlink,
Simple,
}
Available on crate feature
blocking-client
only.Expand description
The kind of SSH programs we have built-in support for.
Various different programs exists with different capabilities, and we have a few built in.
Variants§
Ssh
The standard linux ssh program
Plink
The (plink|putty).exe
binaries, typically only on windows.
Putty
The putty.exe
binary, typically only on windows.
TortoisePlink
The tortoiseplink.exe
binary, only on windows.
Simple
A minimal ssh client that supports on options.
Implementations§
Trait Implementations§
source§impl Clone for ProgramKind
impl Clone for ProgramKind
source§fn clone(&self) -> ProgramKind
fn clone(&self) -> ProgramKind
Returns a copy of the value. Read more
1.0.0 · 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 ProgramKind
impl Debug for ProgramKind
source§impl<'a> From<&'a OsStr> for ProgramKind
impl<'a> From<&'a OsStr> for ProgramKind
source§impl PartialEq<ProgramKind> for ProgramKind
impl PartialEq<ProgramKind> for ProgramKind
source§fn eq(&self, other: &ProgramKind) -> bool
fn eq(&self, other: &ProgramKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.