pub struct ExecLaunch {
pub argv: Vec<String>,
pub worker: Option<WorkerCredentials>,
pub environment: Vec<(OsString, OsString)>,
}Fields§
§argv: Vec<String>§worker: Option<WorkerCredentials>§environment: Vec<(OsString, OsString)>Extra environment applied to the child. Empty for ordinary exec stages; a spawned agent carries the agent environment here.
Trait Implementations§
Source§impl Clone for ExecLaunch
impl Clone for ExecLaunch
Source§fn clone(&self) -> ExecLaunch
fn clone(&self) -> ExecLaunch
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 ExecLaunch
impl RefUnwindSafe for ExecLaunch
impl Send for ExecLaunch
impl Sync for ExecLaunch
impl Unpin for ExecLaunch
impl UnsafeUnpin for ExecLaunch
impl UnwindSafe for ExecLaunch
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