#[repr(C)]pub struct PyCodeObject {Show 25 fields
pub ob_base: PyObject,
pub co_argcount: i32,
pub co_posonlyargcount: i32,
pub co_kwonlyargcount: i32,
pub co_nlocals: i32,
pub co_stacksize: i32,
pub co_flags: i32,
pub co_firstlineno: i32,
pub co_code: *mut PyObject,
pub co_consts: *mut PyObject,
pub co_names: *mut PyObject,
pub co_varnames: *mut PyObject,
pub co_freevars: *mut PyObject,
pub co_cellvars: *mut PyObject,
pub co_cell2arg: *mut isize,
pub co_filename: *mut PyObject,
pub co_name: *mut PyObject,
pub co_lnotab: *mut PyObject,
pub co_zombieframe: *mut c_void,
pub co_weakreflist: *mut PyObject,
pub co_extra: *mut c_void,
pub co_opcache_map: *mut u8,
pub co_opcache: *mut _PyOpcache,
pub co_opcache_flag: i32,
pub co_opcache_size: u8,
}
Available on neither
PyPy
nor GraalPy
and Py_3_8
and non-Py_3_11
only.Fields§
§ob_base: PyObject
§co_argcount: i32
§co_posonlyargcount: i32
§co_kwonlyargcount: i32
§co_nlocals: i32
§co_stacksize: i32
§co_flags: i32
§co_firstlineno: i32
§co_code: *mut PyObject
§co_consts: *mut PyObject
§co_names: *mut PyObject
§co_varnames: *mut PyObject
§co_freevars: *mut PyObject
§co_cellvars: *mut PyObject
§co_cell2arg: *mut isize
§co_filename: *mut PyObject
§co_name: *mut PyObject
§co_lnotab: *mut PyObject
Available on non-
§Py_3_10
only.co_zombieframe: *mut c_void
§co_weakreflist: *mut PyObject
§co_extra: *mut c_void
§co_opcache_map: *mut u8
§co_opcache: *mut _PyOpcache
§co_opcache_flag: i32
§co_opcache_size: u8
Auto Trait Implementations§
impl Freeze for PyCodeObject
impl RefUnwindSafe for PyCodeObject
impl !Send for PyCodeObject
impl !Sync for PyCodeObject
impl Unpin for PyCodeObject
impl UnwindSafe for PyCodeObject
Blanket Implementations§
Source§impl<T> AssertNotZeroSized for T
impl<T> AssertNotZeroSized for T
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