Struct phper_sys::_zend_llist
source · [−]#[repr(C)]pub struct _zend_llist {
pub head: *mut zend_llist_element,
pub tail: *mut zend_llist_element,
pub count: size_t,
pub size: size_t,
pub dtor: llist_dtor_func_t,
pub persistent: c_uchar,
pub traverse_ptr: *mut zend_llist_element,
}
Fields
head: *mut zend_llist_element
tail: *mut zend_llist_element
count: size_t
size: size_t
dtor: llist_dtor_func_t
persistent: c_uchar
traverse_ptr: *mut zend_llist_element
Trait Implementations
sourceimpl Clone for _zend_llist
impl Clone for _zend_llist
sourcefn clone(&self) -> _zend_llist
fn clone(&self) -> _zend_llist
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
sourceimpl Debug for _zend_llist
impl Debug for _zend_llist
impl Copy for _zend_llist
Auto Trait Implementations
impl RefUnwindSafe for _zend_llist
impl !Send for _zend_llist
impl !Sync for _zend_llist
impl Unpin for _zend_llist
impl UnwindSafe for _zend_llist
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