Struct python27_sys::frameobject::PyFrameObject[][src]

#[repr(C)]
pub struct PyFrameObject {
Show 20 fields pub ob_refcnt: Py_ssize_t, pub ob_type: *mut PyTypeObject, pub ob_size: Py_ssize_t, 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_exc_type: *mut PyObject, pub f_exc_value: *mut PyObject, pub f_exc_traceback: *mut PyObject, pub f_tstate: *mut PyThreadState, pub f_lasti: c_int, pub f_lineno: c_int, pub f_iblock: c_int, pub f_blockstack: [PyTryBlock; 20], pub f_localsplus: [*mut PyObject; 1],
}

Fields

ob_refcnt: Py_ssize_tob_type: *mut PyTypeObjectob_size: Py_ssize_tf_back: *mut PyFrameObjectf_code: *mut PyCodeObjectf_builtins: *mut PyObjectf_globals: *mut PyObjectf_locals: *mut PyObjectf_valuestack: *mut *mut PyObjectf_stacktop: *mut *mut PyObjectf_trace: *mut PyObjectf_exc_type: *mut PyObjectf_exc_value: *mut PyObjectf_exc_traceback: *mut PyObjectf_tstate: *mut PyThreadStatef_lasti: c_intf_lineno: c_intf_iblock: c_intf_blockstack: [PyTryBlock; 20]f_localsplus: [*mut PyObject; 1]

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.