#[repr(C)]pub struct PyInterpreterConfig {
pub use_main_obmalloc: i32,
pub allow_fork: i32,
pub allow_exec: i32,
pub allow_threads: i32,
pub allow_daemon_threads: i32,
pub check_multi_interp_extensions: i32,
pub gil: i32,
}Fields§
§use_main_obmalloc: i32§allow_fork: i32§allow_exec: i32§allow_threads: i32§allow_daemon_threads: i32§check_multi_interp_extensions: i32§gil: i32Auto Trait Implementations§
impl Freeze for PyInterpreterConfig
impl RefUnwindSafe for PyInterpreterConfig
impl Send for PyInterpreterConfig
impl Sync for PyInterpreterConfig
impl Unpin for PyInterpreterConfig
impl UnwindSafe for PyInterpreterConfig
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> 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