#[repr(C)]pub struct _zend_ast_list {
pub kind: zend_ast_kind,
pub attr: zend_ast_attr,
pub lineno: u32,
pub children: u32,
pub child: [*mut zend_ast; 1],
}
Fields§
§kind: zend_ast_kind
§attr: zend_ast_attr
§lineno: u32
§children: u32
§child: [*mut zend_ast; 1]
Trait Implementations§
Source§impl Clone for _zend_ast_list
impl Clone for _zend_ast_list
Source§fn clone(&self) -> _zend_ast_list
fn clone(&self) -> _zend_ast_list
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_ast_list
impl Debug for _zend_ast_list
impl Copy for _zend_ast_list
Auto Trait Implementations§
impl Freeze for _zend_ast_list
impl RefUnwindSafe for _zend_ast_list
impl !Send for _zend_ast_list
impl !Sync for _zend_ast_list
impl Unpin for _zend_ast_list
impl UnwindSafe for _zend_ast_list
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