#[repr(C)]pub struct _zend_fiber_context {
pub handle: *mut c_void,
pub kind: *mut c_void,
pub function: zend_fiber_coroutine,
pub cleanup: zend_fiber_clean,
pub stack: *mut zend_fiber_stack,
pub status: zend_fiber_status,
pub top_observed_frame: *mut zend_execute_data,
pub reserved: [*mut c_void; 6],
}
Fields§
§handle: *mut c_void
§kind: *mut c_void
§function: zend_fiber_coroutine
§cleanup: zend_fiber_clean
§stack: *mut zend_fiber_stack
§status: zend_fiber_status
§top_observed_frame: *mut zend_execute_data
§reserved: [*mut c_void; 6]
Trait Implementations§
Source§impl Clone for _zend_fiber_context
impl Clone for _zend_fiber_context
Source§fn clone(&self) -> _zend_fiber_context
fn clone(&self) -> _zend_fiber_context
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _zend_fiber_context
impl Debug for _zend_fiber_context
Source§impl Default for _zend_fiber_context
impl Default for _zend_fiber_context
impl Copy for _zend_fiber_context
Auto Trait Implementations§
impl Freeze for _zend_fiber_context
impl RefUnwindSafe for _zend_fiber_context
impl !Send for _zend_fiber_context
impl !Sync for _zend_fiber_context
impl Unpin for _zend_fiber_context
impl UnwindSafe for _zend_fiber_context
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more