Enum python_packaging::interpreter::MultiprocessingStartMethod [−][src]
pub enum MultiprocessingStartMethod { None, Fork, ForkServer, Spawn, Auto, }
Expand description
Defines how to call multiprocessing.set_start_method()
when multiprocessing
is imported.
Variants
Do not call multiprocessing.set_start_method()
.
Call with value fork
.
Call with value forkserver
Call with value spawn
Call with a valid appropriate for the given environment.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MultiprocessingStartMethod
impl Send for MultiprocessingStartMethod
impl Sync for MultiprocessingStartMethod
impl Unpin for MultiprocessingStartMethod
impl UnwindSafe for MultiprocessingStartMethod
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self