pub struct Python<'p>(/* private fields */);
Expand description
Marker type that indicates that the GIL is currently held.
The ‘Python’ struct is a zero-size marker struct that is required for most Python operations.
This is used to indicate that the operation accesses/modifies the Python interpreter state,
and thus can only be called if the Python interpreter is initialized and the
Python global interpreter lock (GIL) is acquired.
The lifetime 'p
represents the lifetime of the Python interpreter.
You can imagine the GIL to be a giant Mutex<PythonInterpreterState>
.
The type Python<'p>
then acts like a reference &'p PythonInterpreterState
.
Implementations§
source§impl<'p> Python<'p>
impl<'p> Python<'p>
sourcepub unsafe fn assume_gil_acquired() -> Python<'p>
pub unsafe fn assume_gil_acquired() -> Python<'p>
Retrieve Python instance under the assumption that the GIL is already acquired at this point,
and stays acquired for the lifetime 'p
.
Because the output lifetime 'p
is not connected to any input parameter,
care must be taken that the compiler infers an appropriate lifetime for 'p
when calling this function.
sourcepub fn acquire_gil() -> GILGuard
pub fn acquire_gil() -> GILGuard
Acquires the global interpreter lock, which allows access to the Python runtime.
If the Python runtime is not already initialized, this function will initialize it. See prepare_freethreaded_python() for details.
sourcepub fn allow_threads<T, F>(self, f: F) -> T
pub fn allow_threads<T, F>(self, f: F) -> T
Temporarily releases the GIL, thus allowing other Python threads to run.
sourcepub fn eval(
self,
code: &str,
globals: Option<&PyDict>,
locals: Option<&PyDict>
) -> PyResult<PyObject>
pub fn eval( self, code: &str, globals: Option<&PyDict>, locals: Option<&PyDict> ) -> PyResult<PyObject>
Evaluates a Python expression in the given context and returns the result.
If globals
is None
, it defaults to Python module __main__
.
If locals
is None
, it defaults to the value of globals
.
sourcepub fn run(
self,
code: &str,
globals: Option<&PyDict>,
locals: Option<&PyDict>
) -> PyResult<()>
pub fn run( self, code: &str, globals: Option<&PyDict>, locals: Option<&PyDict> ) -> PyResult<()>
Executes one or more Python statements in the given context.
If globals
is None
, it defaults to Python module __main__
.
If locals
is None
, it defaults to the value of globals
.
sourcepub fn NotImplemented(self) -> PyObject
pub fn NotImplemented(self) -> PyObject
Gets the Python builtin value NotImplemented
.
sourcepub fn get_type<T>(self) -> PyTypewhere
T: PythonObjectWithTypeObject,
pub fn get_type<T>(self) -> PyTypewhere
T: PythonObjectWithTypeObject,
Gets the Python type object for type T.