Struct python27_sys::PyCodeObject[][src]

#[repr(C)]
pub struct PyCodeObject {
Show 18 fields pub ob_refcnt: Py_ssize_t, pub ob_type: *mut PyTypeObject, pub co_argcount: c_int, pub co_nlocals: c_int, pub co_stacksize: c_int, pub co_flags: c_int, 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_filename: *mut PyObject, pub co_name: *mut PyObject, pub co_firstlineno: c_int, pub co_lnotab: *mut PyObject, pub co_zombieframe: *mut c_void, pub co_weakreflist: *mut PyObject,
}

Fields

ob_refcnt: Py_ssize_tob_type: *mut PyTypeObjectco_argcount: c_intco_nlocals: c_intco_stacksize: c_intco_flags: c_intco_code: *mut PyObjectco_consts: *mut PyObjectco_names: *mut PyObjectco_varnames: *mut PyObjectco_freevars: *mut PyObjectco_cellvars: *mut PyObjectco_filename: *mut PyObjectco_name: *mut PyObjectco_firstlineno: c_intco_lnotab: *mut PyObjectco_zombieframe: *mut c_voidco_weakreflist: *mut PyObject

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.