pub struct StartExecutionRequest {
pub vm_id: String,
pub context_id: String,
pub argv: Vec<String>,
pub env: BTreeMap<String, String>,
pub cwd: String,
}Fields§
§vm_id: String§context_id: String§argv: Vec<String>§env: BTreeMap<String, String>§cwd: StringTrait Implementations§
Source§impl Clone for StartExecutionRequest
impl Clone for StartExecutionRequest
Source§fn clone(&self) -> StartExecutionRequest
fn clone(&self) -> StartExecutionRequest
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 StartExecutionRequest
impl Debug for StartExecutionRequest
impl Eq for StartExecutionRequest
Source§impl PartialEq for StartExecutionRequest
impl PartialEq for StartExecutionRequest
Source§fn eq(&self, other: &StartExecutionRequest) -> bool
fn eq(&self, other: &StartExecutionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartExecutionRequest
Auto Trait Implementations§
impl Freeze for StartExecutionRequest
impl RefUnwindSafe for StartExecutionRequest
impl Send for StartExecutionRequest
impl Sync for StartExecutionRequest
impl Unpin for StartExecutionRequest
impl UnsafeUnpin for StartExecutionRequest
impl UnwindSafe for StartExecutionRequest
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