#[repr(C)]pub struct _zend_resource {
    pub gc: zend_refcounted_h,
    pub handle: zend_long,
    pub type_: c_int,
    pub ptr: *mut c_void,
}Fields§
§gc: zend_refcounted_h§handle: zend_long§type_: c_int§ptr: *mut c_voidTrait Implementations§
Source§impl Clone for _zend_resource
 
impl Clone for _zend_resource
Source§fn clone(&self) -> _zend_resource
 
fn clone(&self) -> _zend_resource
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 moreimpl Copy for _zend_resource
Auto Trait Implementations§
impl Freeze for _zend_resource
impl RefUnwindSafe for _zend_resource
impl !Send for _zend_resource
impl !Sync for _zend_resource
impl Unpin for _zend_resource
impl UnwindSafe for _zend_resource
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