Struct ssh_jumper_model::JumpHostAuthParams[][src]

pub struct JumpHostAuthParams<'auth> {
    pub user_name: Cow<'auth, str>,
    pub private_key: Cow<'auth, Path>,
    pub passphrase: Option<Cow<'auth, str>>,
}

Parameters to authenticate with the jump host.

Fields

user_name: Cow<'auth, str>

User to log in to the jump host as.

private_key: Cow<'auth, Path>

Private key to use.

passphrase: Option<Cow<'auth, str>>

Passphrase for the private key.

Implementations

impl<'auth> JumpHostAuthParams<'auth>[src]

pub fn new(user_name: Cow<'auth, str>, private_key: Cow<'auth, Path>) -> Self[src]

Returns new JumpHostAuthParams.

The private key passphrase is defaulted to None.

pub fn with_passphrase(self, passphrase: Cow<'auth, str>) -> Self[src]

Sets the passphrase to decrypt the private key.

Trait Implementations

impl<'auth> Clone for JumpHostAuthParams<'auth>[src]

impl<'auth> Debug for JumpHostAuthParams<'auth>[src]

impl<'auth> PartialEq<JumpHostAuthParams<'auth>> for JumpHostAuthParams<'auth>[src]

impl<'auth> StructuralPartialEq for JumpHostAuthParams<'auth>[src]

Auto Trait Implementations

impl<'auth> RefUnwindSafe for JumpHostAuthParams<'auth>

impl<'auth> Send for JumpHostAuthParams<'auth>

impl<'auth> Sync for JumpHostAuthParams<'auth>

impl<'auth> Unpin for JumpHostAuthParams<'auth>

impl<'auth> UnwindSafe for JumpHostAuthParams<'auth>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,