#[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: i8,
pub f_trace_opcodes: i8,
pub f_gen: *mut PyObject,
pub f_lasti: i32,
pub f_lineno: i32,
pub f_iblock: i32,
pub f_executing: i8,
pub f_blockstack: [PyTryBlock; 20],
pub f_localsplus: [*mut PyObject; 1],
}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_trace_lines: i8§f_trace_opcodes: i8§f_gen: *mut PyObject§f_lasti: i32§f_lineno: i32§f_iblock: i32§f_executing: i8§f_blockstack: [PyTryBlock; 20]§f_localsplus: [*mut PyObject; 1]Auto Trait Implementations§
impl Freeze for PyFrameObject
impl RefUnwindSafe for PyFrameObject
impl !Send for PyFrameObject
impl !Sync for PyFrameObject
impl Unpin for PyFrameObject
impl UnwindSafe for PyFrameObject
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more