pub struct InteractiveShellOptions {Show 14 fields
pub ssh_host: Option<String>,
pub ssh_port: u16,
pub ssh_username: Option<String>,
pub ssh_password: Option<String>,
pub private_key: Option<PathBuf>,
pub private_key_passphrase: Option<String>,
pub command: Option<String>,
pub term: Option<String>,
pub no_host_key_check: bool,
pub host_key: Option<String>,
pub known_hosts_file: Option<PathBuf>,
pub cloudflared_hostname: Option<String>,
pub cloudflared_binary: Option<PathBuf>,
pub cloudflared_destination: Option<String>,
}Fields§
§ssh_host: Option<String>§ssh_port: u16§ssh_username: Option<String>§ssh_password: Option<String>§private_key: Option<PathBuf>§private_key_passphrase: Option<String>§command: Option<String>§term: Option<String>§no_host_key_check: bool§host_key: Option<String>§known_hosts_file: Option<PathBuf>§cloudflared_hostname: Option<String>§cloudflared_binary: Option<PathBuf>§cloudflared_destination: Option<String>Trait Implementations§
Source§impl Clone for InteractiveShellOptions
impl Clone for InteractiveShellOptions
Source§fn clone(&self) -> InteractiveShellOptions
fn clone(&self) -> InteractiveShellOptions
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 moreAuto Trait Implementations§
impl Freeze for InteractiveShellOptions
impl RefUnwindSafe for InteractiveShellOptions
impl Send for InteractiveShellOptions
impl Sync for InteractiveShellOptions
impl Unpin for InteractiveShellOptions
impl UnsafeUnpin for InteractiveShellOptions
impl UnwindSafe for InteractiveShellOptions
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more