#[repr(C)]pub struct _zend_gc_globals {
pub gc_enabled: zend_bool,
pub gc_active: zend_bool,
pub buf: *mut gc_root_buffer,
pub roots: gc_root_buffer,
pub unused: *mut gc_root_buffer,
pub first_unused: *mut gc_root_buffer,
pub last_unused: *mut gc_root_buffer,
pub zval_to_free: *mut zval_gc_info,
pub free_list: *mut zval_gc_info,
pub next_to_free: *mut zval_gc_info,
pub gc_runs: zend_uint,
pub collected: zend_uint,
}
Fields§
§gc_enabled: zend_bool
§gc_active: zend_bool
§buf: *mut gc_root_buffer
§roots: gc_root_buffer
§unused: *mut gc_root_buffer
§first_unused: *mut gc_root_buffer
§last_unused: *mut gc_root_buffer
§zval_to_free: *mut zval_gc_info
§free_list: *mut zval_gc_info
§next_to_free: *mut zval_gc_info
§gc_runs: zend_uint
§collected: zend_uint
Trait Implementations§
Source§impl Clone for _zend_gc_globals
impl Clone for _zend_gc_globals
Source§fn clone(&self) -> _zend_gc_globals
fn clone(&self) -> _zend_gc_globals
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for _zend_gc_globals
Auto Trait Implementations§
impl Freeze for _zend_gc_globals
impl RefUnwindSafe for _zend_gc_globals
impl !Send for _zend_gc_globals
impl !Sync for _zend_gc_globals
impl Unpin for _zend_gc_globals
impl UnwindSafe for _zend_gc_globals
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