pub struct ProcessStartRequest {
pub environment: ExecutionEnvironment,
pub process: IsolatedProcessSpec,
pub effect_intent: EffectIntent,
}Expand description
Carries process start request data across a host-port boundary. Constructing the value does not call the host; the port method that receives it documents any adapter, network, or storage effect.
Fields§
§environment: ExecutionEnvironmentEnvironment used by this record or request.
process: IsolatedProcessSpecProcess used by this record or request.
effect_intent: EffectIntentEffect intent used by this record or request.
Trait Implementations§
Source§impl Clone for ProcessStartRequest
impl Clone for ProcessStartRequest
Source§fn clone(&self) -> ProcessStartRequest
fn clone(&self) -> ProcessStartRequest
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 ProcessStartRequest
impl Debug for ProcessStartRequest
Source§impl<'de> Deserialize<'de> for ProcessStartRequest
impl<'de> Deserialize<'de> for ProcessStartRequest
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
Source§impl PartialEq for ProcessStartRequest
impl PartialEq for ProcessStartRequest
Source§fn eq(&self, other: &ProcessStartRequest) -> bool
fn eq(&self, other: &ProcessStartRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessStartRequest
impl Serialize for ProcessStartRequest
impl Eq for ProcessStartRequest
impl StructuralPartialEq for ProcessStartRequest
Auto Trait Implementations§
impl Freeze for ProcessStartRequest
impl RefUnwindSafe for ProcessStartRequest
impl Send for ProcessStartRequest
impl Sync for ProcessStartRequest
impl Unpin for ProcessStartRequest
impl UnsafeUnpin for ProcessStartRequest
impl UnwindSafe for ProcessStartRequest
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