Struct cpython::Python[][src]

pub struct Python<'p>(_);

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

impl<'p> Python<'p>[src]

pub unsafe fn assume_gil_acquired() -> Python<'p>[src]

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.

pub fn acquire_gil() -> GILGuard[src]

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.

pub fn allow_threads<T, F>(self, f: F) -> T where
    F: Send + FnOnce() -> T, 
[src]

Temporarily releases the GIL, thus allowing other Python threads to run.

pub fn eval(
    self,
    code: &str,
    globals: Option<&PyDict>,
    locals: Option<&PyDict>
) -> PyResult<PyObject>
[src]

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.

pub fn run(
    self,
    code: &str,
    globals: Option<&PyDict>,
    locals: Option<&PyDict>
) -> PyResult<()>
[src]

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.

pub fn None(self) -> PyObject[src]

Gets the Python builtin value None.

pub fn True(self) -> PyBool[src]

Gets the Python builtin value True.

pub fn False(self) -> PyBool[src]

Gets the Python builtin value False.

pub fn NotImplemented(self) -> PyObject[src]

Gets the Python builtin value NotImplemented.

pub fn get_type<T>(self) -> PyType where
    T: PythonObjectWithTypeObject
[src]

Gets the Python type object for type T.

pub fn import(self, name: &str) -> PyResult<PyModule>[src]

Import the Python module with the specified name.

Trait Implementations

impl<'p> Clone for Python<'p>[src]

impl<'p> Copy for Python<'p>[src]

Auto Trait Implementations

impl<'p> !RefUnwindSafe for Python<'p>[src]

impl<'p> !Send for Python<'p>[src]

impl<'p> !Sync for Python<'p>[src]

impl<'p> Unpin for Python<'p>[src]

impl<'p> !UnwindSafe for Python<'p>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.