Struct PyCodeObject

Source
#[repr(C)]
pub struct PyCodeObject {
Show 29 fields pub ob_base: PyVarObject, pub co_consts: *mut PyObject, pub co_names: *mut PyObject, pub co_exceptiontable: *mut PyObject, pub co_flags: i32, pub co_argcount: i32, pub co_posonlyargcount: i32, pub co_kwonlyargcount: i32, pub co_stacksize: i32, pub co_firstlineno: i32, pub co_nlocalsplus: i32, pub co_framesize: i32, pub co_nlocals: i32, pub co_ncellvars: i32, pub co_nfreevars: i32, pub co_version: u32, pub co_localsplusnames: *mut PyObject, pub co_localspluskinds: *mut PyObject, pub co_filename: *mut PyObject, pub co_name: *mut PyObject, pub co_qualname: *mut PyObject, pub co_linetable: *mut PyObject, pub co_weakreflist: *mut PyObject, pub _co_cached: *mut _PyCoCached, pub _co_instrumentation_version: u64, pub _co_monitoring: *mut _PyCoMonitoringData, pub _co_firsttraceable: i32, pub co_extra: *mut c_void, pub co_code_adaptive: [i8; 1],
}

Fields§

§ob_base: PyVarObject§co_consts: *mut PyObject§co_names: *mut PyObject§co_exceptiontable: *mut PyObject§co_flags: i32§co_argcount: i32§co_posonlyargcount: i32§co_kwonlyargcount: i32§co_stacksize: i32§co_firstlineno: i32§co_nlocalsplus: i32§co_framesize: i32§co_nlocals: i32§co_ncellvars: i32§co_nfreevars: i32§co_version: u32§co_localsplusnames: *mut PyObject§co_localspluskinds: *mut PyObject§co_filename: *mut PyObject§co_name: *mut PyObject§co_qualname: *mut PyObject§co_linetable: *mut PyObject§co_weakreflist: *mut PyObject§_co_cached: *mut _PyCoCached§_co_instrumentation_version: u64§_co_monitoring: *mut _PyCoMonitoringData§_co_firsttraceable: i32§co_extra: *mut c_void§co_code_adaptive: [i8; 1]

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.