#[repr(C)]
pub struct PyFrameObject {Show 18 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_trace_lines: c_char,
pub f_trace_opcodes: c_char,
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],
}
Performs copy-assignment from source
. Read more
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.