pub struct ProcessStartOptions {
pub descriptor: Option<ProcessHandleDescriptor>,
}Fields§
§descriptor: Option<ProcessHandleDescriptor>Implementations§
Source§impl ProcessStartOptions
impl ProcessStartOptions
pub fn new() -> Self
pub fn with_descriptor(self, descriptor: ProcessHandleDescriptor) -> Self
pub fn with_optional_descriptor( self, descriptor: Option<ProcessHandleDescriptor>, ) -> Self
pub fn execution_context( &self, scope: &ProcessOpScope<'_>, ) -> ProcessExecutionContext
Trait Implementations§
Source§impl Clone for ProcessStartOptions
impl Clone for ProcessStartOptions
Source§fn clone(&self) -> ProcessStartOptions
fn clone(&self) -> ProcessStartOptions
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 ProcessStartOptions
impl Debug for ProcessStartOptions
Source§impl Default for ProcessStartOptions
impl Default for ProcessStartOptions
Source§fn default() -> ProcessStartOptions
fn default() -> ProcessStartOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProcessStartOptions
impl RefUnwindSafe for ProcessStartOptions
impl Send for ProcessStartOptions
impl Sync for ProcessStartOptions
impl Unpin for ProcessStartOptions
impl UnsafeUnpin for ProcessStartOptions
impl UnwindSafe for ProcessStartOptions
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