pub struct ExecuteProcessSettings {
pub process_parameters: Value,
pub stdio_relay_settings: Option<StdioRelaySettings>,
}Fields§
§process_parameters: Value§stdio_relay_settings: Option<StdioRelaySettings>Optional hvsock-listener GUIDs for stdio redirection. When None,
the guest uses pipes within the container.
Trait Implementations§
Source§impl Clone for ExecuteProcessSettings
impl Clone for ExecuteProcessSettings
Source§fn clone(&self) -> ExecuteProcessSettings
fn clone(&self) -> ExecuteProcessSettings
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 ExecuteProcessSettings
impl Debug for ExecuteProcessSettings
Source§impl<'de> Deserialize<'de> for ExecuteProcessSettings
impl<'de> Deserialize<'de> for ExecuteProcessSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExecuteProcessSettings
impl RefUnwindSafe for ExecuteProcessSettings
impl Send for ExecuteProcessSettings
impl Sync for ExecuteProcessSettings
impl Unpin for ExecuteProcessSettings
impl UnsafeUnpin for ExecuteProcessSettings
impl UnwindSafe for ExecuteProcessSettings
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