pub struct ProcessCommandConfig {
pub creation_flags: Option<u32>,
pub create_process_group: bool,
pub nice: Option<i32>,
pub address_space_limit_bytes: Option<u64>,
}Expand description
Host-neutral command options selected by the caller before spawning.
Fields§
§creation_flags: Option<u32>§create_process_group: bool§nice: Option<i32>§address_space_limit_bytes: Option<u64>Trait Implementations§
Source§impl Clone for ProcessCommandConfig
impl Clone for ProcessCommandConfig
Source§fn clone(&self) -> ProcessCommandConfig
fn clone(&self) -> ProcessCommandConfig
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 moreimpl Copy for ProcessCommandConfig
Source§impl Debug for ProcessCommandConfig
impl Debug for ProcessCommandConfig
Source§impl Default for ProcessCommandConfig
impl Default for ProcessCommandConfig
Source§fn default() -> ProcessCommandConfig
fn default() -> ProcessCommandConfig
Returns the “default value” for a type. Read more
impl Eq for ProcessCommandConfig
Source§impl PartialEq for ProcessCommandConfig
impl PartialEq for ProcessCommandConfig
impl StructuralPartialEq for ProcessCommandConfig
Auto Trait Implementations§
impl Freeze for ProcessCommandConfig
impl RefUnwindSafe for ProcessCommandConfig
impl Send for ProcessCommandConfig
impl Sync for ProcessCommandConfig
impl Unpin for ProcessCommandConfig
impl UnsafeUnpin for ProcessCommandConfig
impl UnwindSafe for ProcessCommandConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more