#[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: i32
Auto 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