pub type zend_fiber_context = _zend_fiber_context;
Aliased Type§
#[repr(C)]pub struct zend_fiber_context {
pub handle: *mut c_void,
pub kind: *mut c_void,
pub function: Option<unsafe extern "C" fn(*mut _zend_fiber_transfer)>,
pub cleanup: Option<unsafe extern "C" fn(*mut _zend_fiber_context)>,
pub stack: *mut _zend_fiber_stack,
pub status: u32,
pub top_observed_frame: *mut _zend_execute_data,
pub reserved: [*mut c_void; 6],
}
Fields§
§handle: *mut c_void
§kind: *mut c_void
§function: Option<unsafe extern "C" fn(*mut _zend_fiber_transfer)>
§cleanup: Option<unsafe extern "C" fn(*mut _zend_fiber_context)>
§stack: *mut _zend_fiber_stack
§status: u32
§top_observed_frame: *mut _zend_execute_data
§reserved: [*mut c_void; 6]