Struct phper_sys::_zend_object
source · [−]#[repr(C)]pub struct _zend_object {
pub gc: zend_refcounted_h,
pub handle: u32,
pub ce: *mut zend_class_entry,
pub handlers: *const zend_object_handlers,
pub properties: *mut HashTable,
pub properties_table: [zval; 1],
}
Fields
gc: zend_refcounted_h
handle: u32
ce: *mut zend_class_entry
handlers: *const zend_object_handlers
properties: *mut HashTable
properties_table: [zval; 1]
Trait Implementations
sourceimpl Clone for _zend_object
impl Clone for _zend_object
sourcefn clone(&self) -> _zend_object
fn clone(&self) -> _zend_object
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for _zend_object
Auto Trait Implementations
impl RefUnwindSafe for _zend_object
impl !Send for _zend_object
impl !Sync for _zend_object
impl Unpin for _zend_object
impl UnwindSafe for _zend_object
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more