Struct php_all_sys::php70::_zend_gc_globals[][src]

#[repr(C)]pub struct _zend_gc_globals {
    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_boolgc_active: zend_boolgc_full: zend_boolbuf: *mut gc_root_bufferroots: gc_root_bufferunused: *mut gc_root_bufferfirst_unused: *mut gc_root_bufferlast_unused: *mut gc_root_bufferto_free: gc_root_buffernext_to_free: *mut gc_root_buffergc_runs: u32collected: u32additional_buffer: *mut gc_additional_buffer

Trait Implementations

impl Clone for _zend_gc_globals[src]

impl Copy for _zend_gc_globals[src]

impl Debug 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.