Struct cpython::PyObject[][src]

#[repr(C)]pub struct PyObject { /* fields omitted */ }

Represents a reference to a Python object.

Python objects are reference counted. Calling clone_ref() on a PyObject will return a new reference to the same object (thus incrementing the reference count). The Drop implementation will automatically decrement the reference count. You can also call release_ref() to explicitly decrement the reference count. This is slightly faster than relying on automatic drop, because release_ref does not need to check whether the GIL needs to be acquired.

PyObject can be used with all Python objects, since all python types derive from object. This crate also contains other, more specific types that serve as references to Python objects (e.g. PyTuple for Python tuples, etc.).

You can convert from any Python object to PyObject by calling as_object() or into_object() from the PythonObject trait. In the other direction, you can call cast_as() or cast_into() on PyObject to convert to more specific object types.

Most of the interesting methods are provided by the ObjectProtocol trait.

Implementations

impl PyObject[src]

pub unsafe fn from_owned_ptr(_py: Python<'_>, ptr: *mut PyObject) -> PyObject[src]

Creates a PyObject instance for the given FFI pointer. This moves ownership over the pointer into the PyObject. Undefined behavior if the pointer is NULL or invalid.

pub unsafe fn from_borrowed_ptr(_py: Python<'_>, ptr: *mut PyObject) -> PyObject[src]

Creates a PyObject instance for the given FFI pointer. Calls Py_INCREF() on the ptr. Undefined behavior if the pointer is NULL or invalid.

pub unsafe fn from_owned_ptr_opt(
    py: Python<'_>,
    ptr: *mut PyObject
) -> Option<PyObject>
[src]

Creates a PyObject instance for the given FFI pointer. This moves ownership over the pointer into the PyObject. Returns None for null pointers; undefined behavior if the pointer is invalid.

pub unsafe fn from_borrowed_ptr_opt(
    py: Python<'_>,
    ptr: *mut PyObject
) -> Option<PyObject>
[src]

Returns None for null pointers; undefined behavior if the pointer is invalid.

pub fn as_ptr(&self) -> *mut PyObject[src]

Gets the underlying FFI pointer. Returns a borrowed pointer.

#[must_use]pub fn steal_ptr(self) -> *mut PyObject[src]

Gets the underlying FFI pointer. Consumes self without calling Py_DECREF(), thus returning an owned pointer.

pub unsafe fn borrow_from_ptr(ptr: &*mut PyObject) -> &PyObject[src]

Transmutes an FFI pointer to &PyObject. Undefined behavior if the pointer is NULL or invalid.

pub unsafe fn borrow_from_owned_ptr_slice(ptr: &[*mut PyObject]) -> &[PyObject][src]

Transmutes a slice of owned FFI pointers to &[PyObject]. Undefined behavior if any pointer in the slice is NULL or invalid.

pub fn get_refcnt(&self, _py: Python<'_>) -> usize[src]

Gets the reference count of this Python object.

pub fn get_type(&self, py: Python<'_>) -> PyType[src]

Gets the Python type object for this object's type.

pub unsafe fn unchecked_cast_into<T>(self) -> T where
    T: PythonObject
[src]

Casts the PyObject to a concrete Python object type. Causes undefined behavior if the object is not of the expected type. This is a wrapper function around PythonObject::unchecked_downcast_from().

pub fn cast_into<T>(
    self,
    py: Python<'_>
) -> Result<T, PythonObjectDowncastError<'_>> where
    T: PythonObjectWithCheckedDowncast
[src]

Casts the PyObject to a concrete Python object type. Fails with PythonObjectDowncastError if the object is not of the expected type. This is a wrapper function around PythonObjectWithCheckedDowncast::downcast_from().

pub unsafe fn unchecked_cast_as<T>(&self) -> &T where
    T: PythonObject
[src]

Casts the PyObject to a concrete Python object type. Causes undefined behavior if the object is not of the expected type. This is a wrapper function around PythonObject::unchecked_downcast_borrow_from().

pub fn cast_as<'s, 'p, T>(
    &'s self,
    py: Python<'p>
) -> Result<&'s T, PythonObjectDowncastError<'p>> where
    T: PythonObjectWithCheckedDowncast
[src]

Casts the PyObject to a concrete Python object type. Fails with PythonObjectDowncastError if the object is not of the expected type. This is a wrapper function around PythonObjectWithCheckedDowncast::downcast_borrow_from().

pub fn extract<'a, T>(&'a self, py: Python<'_>) -> PyResult<T> where
    T: FromPyObject<'a>, 
[src]

Extracts some type from the Python object. This is a wrapper function around FromPyObject::from_py_object().

pub fn is_none(&self, _py: Python<'_>) -> bool[src]

True if this is None in Python.

Trait Implementations

impl BaseObject for PyObject[src]

type InitType = ()

impl Debug for PyObject[src]

impl Display for PyObject[src]

impl Drop for PyObject[src]

Dropping a PyObject decrements the reference count on the object by 1.

impl Eq for PyObject[src]

PyObject implements the == operator using reference equality: obj1 == obj2 in rust is equivalent to obj1 is obj2 in Python.

impl<'s> FromPyObject<'s> for PyObject[src]

impl<'s> FromPyObject<'s> for &'s PyObject[src]

impl ObjectProtocol for PyObject[src]

impl PartialEq<PyObject> for PyObject[src]

PyObject implements the == operator using reference equality: obj1 == obj2 in rust is equivalent to obj1 is obj2 in Python.

impl PythonObject for PyObject[src]

impl PythonObjectWithCheckedDowncast for PyObject[src]

impl PythonObjectWithTypeObject for PyObject[src]

impl Send for PyObject[src]

impl Sync for PyObject[src]

impl ToPyObject for PyObject[src]

Identity conversion: allows using existing PyObject instances where T: ToPyObject is expected.

type ObjectType = PyObject

Auto Trait Implementations

impl RefUnwindSafe for PyObject[src]

impl Unpin for PyObject[src]

impl UnwindSafe for PyObject[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> ToString for T where
    T: Display + ?Sized
[src]

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.