Struct cpython::GILProtected [] [src]

pub struct GILProtected<T> { /* fields omitted */ }

Mutex-like wrapper object for data that is protected by the Python GIL.

Example

use std::cell::Cell;
use cpython::{Python, GILProtected};

let data = GILProtected::new(Cell::new(0));

{
    let gil_guard = Python::acquire_gil();
    let cell = data.get(gil_guard.python());
    cell.set(cell.get() + 1);
}

Methods

impl<T> GILProtected<T>
[src]

[src]

Creates a new instance of GILProtected.

[src]

Returns a shared reference to the data stored in the GILProtected.

Requires a Python instance as proof that the GIL is acquired.

[src]

Consumes the GILProtected, returning the wrapped value.

Trait Implementations

impl<T: Send> Send for GILProtected<T>
[src]

impl<T: Send> Sync for GILProtected<T>
[src]

Because GILProtected ensures that the contained data is only accessed while the GIL is acquired, it can implement Sync even if the contained data does not.