#[repr(C)]pub struct _zend_stack {
pub size: c_int,
pub top: c_int,
pub max: c_int,
pub elements: *mut c_void,
}
Fields§
§size: c_int
§top: c_int
§max: c_int
§elements: *mut c_void
Trait Implementations§
Source§impl Clone for _zend_stack
impl Clone for _zend_stack
Source§fn clone(&self) -> _zend_stack
fn clone(&self) -> _zend_stack
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 Debug for _zend_stack
impl Debug for _zend_stack
Source§impl Default for _zend_stack
impl Default for _zend_stack
impl Copy for _zend_stack
Auto Trait Implementations§
impl Freeze for _zend_stack
impl RefUnwindSafe for _zend_stack
impl !Send for _zend_stack
impl !Sync for _zend_stack
impl Unpin for _zend_stack
impl UnwindSafe for _zend_stack
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