[][src]Struct pyo3::ffi::frameobject::PyFrameObject

#[repr(C)]pub struct PyFrameObject {
    pub ob_base: PyVarObject,
    pub f_back: *mut PyFrameObject,
    pub f_code: *mut PyCodeObject,
    pub f_builtins: *mut PyObject,
    pub f_globals: *mut PyObject,
    pub f_locals: *mut PyObject,
    pub f_valuestack: *mut *mut PyObject,
    pub f_stacktop: *mut *mut PyObject,
    pub f_trace: *mut PyObject,
    pub f_exc_type: *mut PyObject,
    pub f_exc_value: *mut PyObject,
    pub f_exc_traceback: *mut PyObject,
    pub f_gen: *mut PyObject,
    pub f_lasti: c_int,
    pub f_lineno: c_int,
    pub f_iblock: c_int,
    pub f_executing: c_char,
    pub f_blockstack: [PyTryBlock; 20],
    pub f_localsplus: [*mut PyObject; 1],
}

Fields

ob_base: PyVarObjectf_back: *mut PyFrameObjectf_code: *mut PyCodeObjectf_builtins: *mut PyObjectf_globals: *mut PyObjectf_locals: *mut PyObjectf_valuestack: *mut *mut PyObjectf_stacktop: *mut *mut PyObjectf_trace: *mut PyObjectf_exc_type: *mut PyObjectf_exc_value: *mut PyObjectf_exc_traceback: *mut PyObjectf_gen: *mut PyObjectf_lasti: c_intf_lineno: c_intf_iblock: c_intf_executing: c_charf_blockstack: [PyTryBlock; 20]f_localsplus: [*mut PyObject; 1]

Trait Implementations

impl Clone for PyFrameObject[src]

impl Copy for PyFrameObject[src]

Auto Trait Implementations

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.