pub struct Config {
pub host: String,
pub port: u16,
pub username: String,
pub password: String,
pub key: Option<String>,
pub target_folder: String,
pub target: String,
pub remote_folder: String,
pub debug: bool,
pub build: bool,
pub binaries: Vec<String>,
pub profile: String,
}Fields§
§host: String§port: u16§username: String§password: String§key: Option<String>§target_folder: String§target: String§remote_folder: String§debug: bool§build: bool§binaries: Vec<String>§profile: StringImplementations§
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