#[repr(C)]pub struct _zend_llist_element {
pub next: *mut _zend_llist_element,
pub prev: *mut _zend_llist_element,
pub data: [c_char; 1],
}
Fields§
§next: *mut _zend_llist_element
§prev: *mut _zend_llist_element
§data: [c_char; 1]
Trait Implementations§
Source§impl Clone for _zend_llist_element
impl Clone for _zend_llist_element
Source§fn clone(&self) -> _zend_llist_element
fn clone(&self) -> _zend_llist_element
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 moreSource§impl Debug for _zend_llist_element
impl Debug for _zend_llist_element
impl Copy for _zend_llist_element
Auto Trait Implementations§
impl Freeze for _zend_llist_element
impl RefUnwindSafe for _zend_llist_element
impl !Send for _zend_llist_element
impl !Sync for _zend_llist_element
impl Unpin for _zend_llist_element
impl UnwindSafe for _zend_llist_element
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