#[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§
Source§impl Clone for _zend_object
impl Clone for _zend_object
Source§fn clone(&self) -> _zend_object
fn clone(&self) -> _zend_object
Returns a copy 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 Default for _zend_object
impl Default for _zend_object
impl Copy for _zend_object
Auto Trait Implementations§
impl Freeze for _zend_object
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§
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