[][src]Struct pyo3::ffi::PyObject

#[repr(C)]pub struct PyObject {
    pub ob_refcnt: Py_ssize_t,
    pub ob_type: *mut PyTypeObject,
}

Fields

ob_refcnt: Py_ssize_tob_type: *mut PyTypeObject

Trait Implementations

impl Clone for PyObject[src]

impl Copy for PyObject[src]

impl Debug for PyObject[src]

impl PyLayout<PyAny> for PyObject[src]

impl PyLayout<PyBool> for PyObject[src]

impl PyLayout<PyByteArray> for PyObject[src]

impl PyLayout<PyBytes> for PyObject[src]

impl PyLayout<PyList> for PyObject[src]

impl PyLayout<PyLong> for PyObject[src]

impl PyLayout<PyModule> for PyObject[src]

impl PyLayout<PyString> for PyObject[src]

impl PyLayout<PyTuple> for PyObject[src]

impl PyLayout<PyType> for PyObject[src]

impl PyLayout<PyTzInfo> for PyObject[src]

impl PySizedLayout<PyAny> for PyObject[src]

impl PySizedLayout<PyBool> for PyObject[src]

impl PySizedLayout<PyTzInfo> for PyObject[src]

Auto Trait Implementations

impl RefUnwindSafe for PyObject

impl !Send for PyObject

impl !Sync for PyObject

impl Unpin for PyObject

impl UnwindSafe for PyObject

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> FromPy<T> for T[src]

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

impl<T, U> IntoPy<U> for T where
    U: FromPy<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.