pub struct Config {
pub profile: Option<String>,
pub remote_host: Option<String>,
pub remote_user: Option<String>,
pub port: u16,
pub jump_host: Option<String>,
pub jump_user: Option<String>,
pub timeout: u64,
pub keep_remote_files: bool,
pub spectre_cmd: String,
pub spectre_args: Vec<String>,
}Fields§
§profile: Option<String>§remote_host: Option<String>§remote_user: Option<String>§port: u16§jump_host: Option<String>§jump_user: Option<String>§timeout: u64§keep_remote_files: bool§spectre_cmd: String§spectre_args: Vec<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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