Struct pyo3_ffi::PyFrameObject
source · [−]#[repr(C)]pub struct PyFrameObject {Show 19 fields
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],
}
Expand description
struct _frame as typedef’ed in pyframe.h
Fields
ob_base: PyVarObject
f_back: *mut PyFrameObject
f_code: *mut PyCodeObject
f_builtins: *mut PyObject
f_globals: *mut PyObject
f_locals: *mut PyObject
f_valuestack: *mut *mut PyObject
f_stacktop: *mut *mut PyObject
f_trace: *mut PyObject
f_exc_type: *mut PyObject
f_exc_value: *mut PyObject
f_exc_traceback: *mut PyObject
f_gen: *mut PyObject
f_lasti: c_int
f_lineno: c_int
f_iblock: c_int
f_executing: c_char
f_blockstack: [PyTryBlock; 20]
f_localsplus: [*mut PyObject; 1]
Trait Implementations
sourceimpl Clone for PyFrameObject
impl Clone for PyFrameObject
sourcefn clone(&self) -> PyFrameObject
fn clone(&self) -> PyFrameObject
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for PyFrameObject
Auto Trait Implementations
impl RefUnwindSafe for PyFrameObject
impl !Send for PyFrameObject
impl !Sync for PyFrameObject
impl Unpin for PyFrameObject
impl UnwindSafe for PyFrameObject
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more