#[repr(C)]pub struct _zend_fiber {
pub std: zend_object,
pub flags: u8,
pub context: zend_fiber_context,
pub caller: *mut zend_fiber_context,
pub previous: *mut zend_fiber_context,
pub fci: zend_fcall_info,
pub fci_cache: zend_fcall_info_cache,
pub execute_data: *mut zend_execute_data,
pub stack_bottom: *mut zend_execute_data,
pub vm_stack: zend_vm_stack,
pub result: zval,
}Fields§
§std: zend_object§flags: u8§context: zend_fiber_context§caller: *mut zend_fiber_context§previous: *mut zend_fiber_context§fci: zend_fcall_info§fci_cache: zend_fcall_info_cache§execute_data: *mut zend_execute_data§stack_bottom: *mut zend_execute_data§vm_stack: zend_vm_stack§result: zvalAuto Trait Implementations§
impl Freeze for _zend_fiber
impl RefUnwindSafe for _zend_fiber
impl !Send for _zend_fiber
impl !Sync for _zend_fiber
impl Unpin for _zend_fiber
impl UnwindSafe for _zend_fiber
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