Struct php_all_sys::php56_zts::_zend_gc_globals[][src]

#[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_boolgc_active: zend_boolbuf: *mut gc_root_bufferroots: gc_root_bufferunused: *mut gc_root_bufferfirst_unused: *mut gc_root_bufferlast_unused: *mut gc_root_bufferzval_to_free: *mut zval_gc_infofree_list: *mut zval_gc_infonext_to_free: *mut zval_gc_infogc_runs: zend_uintcollected: zend_uint

Trait Implementations

impl Clone for _zend_gc_globals[src]

impl Copy for _zend_gc_globals[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.