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 for ProgramKind
impl PartialEq for ProgramKind
impl Copy for ProgramKind
impl Eq for ProgramKind
impl StructuralPartialEq for ProgramKind
Auto Trait Implementations§
impl Freeze for ProgramKind
impl RefUnwindSafe for ProgramKind
impl Send for ProgramKind
impl Sync for ProgramKind
impl Unpin for ProgramKind
impl UnwindSafe for ProgramKind
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)