#[repr(C)]pub struct _zend_gc_globals {Show 13 fields
pub gc_enabled: zend_bool,
pub gc_active: zend_bool,
pub gc_full: 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 to_free: gc_root_buffer,
pub next_to_free: *mut gc_root_buffer,
pub gc_runs: u32,
pub collected: u32,
pub additional_buffer: *mut gc_additional_buffer,
}
Fields§
§gc_enabled: zend_bool
§gc_active: zend_bool
§gc_full: 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
§to_free: gc_root_buffer
§next_to_free: *mut gc_root_buffer
§gc_runs: u32
§collected: u32
§additional_buffer: *mut gc_additional_buffer
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 moreSource§impl Debug for _zend_gc_globals
impl Debug for _zend_gc_globals
impl 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