pub struct RemoteRunRequest {
pub options: RemoteOptions,
pub cli_args: Vec<String>,
pub flags: RemoteRunFlags,
pub ecosystem: EcosystemInstallChoice,
}Expand description
CLI arguments to run on the box via the uploaded agent (without the binary name).
Fields§
§options: RemoteOptionsSession and binary options.
cli_args: Vec<String>Arguments after the remote horto-os-ui binary (e.g. ["setup", "run", "--full"] or with --apply).
flags: RemoteRunFlagsSudo / payload / reboot / capture switches.
ecosystem: EcosystemInstallChoiceWhich services to install when RemoteRunFlags::install_payload_on_success is set.
Trait Implementations§
Source§impl Clone for RemoteRunRequest
impl Clone for RemoteRunRequest
Source§fn clone(&self) -> RemoteRunRequest
fn clone(&self) -> RemoteRunRequest
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 moreSource§impl Debug for RemoteRunRequest
impl Debug for RemoteRunRequest
Auto Trait Implementations§
impl Freeze for RemoteRunRequest
impl RefUnwindSafe for RemoteRunRequest
impl Send for RemoteRunRequest
impl Sync for RemoteRunRequest
impl Unpin for RemoteRunRequest
impl UnsafeUnpin for RemoteRunRequest
impl UnwindSafe for RemoteRunRequest
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