Struct pyo3::ffi::PyCodeObject

source ·
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_linetable: *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 non-PyPy 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_linetable: *mut PyObject
Available on 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

Trait Implementations§

source§

impl Clone for PyCodeObject

source§

fn clone(&self) -> PyCodeObject

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for PyCodeObject

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere
T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere
T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere
U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.