Struct phper_sys::_zend_ast_decl
source · [−]#[repr(C)]pub struct _zend_ast_decl {
pub kind: zend_ast_kind,
pub attr: zend_ast_attr,
pub start_lineno: u32,
pub end_lineno: u32,
pub flags: u32,
pub lex_pos: *mut c_uchar,
pub doc_comment: *mut zend_string,
pub name: *mut zend_string,
pub child: [*mut zend_ast; 4],
}
Fields
kind: zend_ast_kind
attr: zend_ast_attr
start_lineno: u32
end_lineno: u32
flags: u32
lex_pos: *mut c_uchar
doc_comment: *mut zend_string
name: *mut zend_string
child: [*mut zend_ast; 4]
Trait Implementations
sourceimpl Clone for _zend_ast_decl
impl Clone for _zend_ast_decl
sourcefn clone(&self) -> _zend_ast_decl
fn clone(&self) -> _zend_ast_decl
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_ast_decl
impl Debug for _zend_ast_decl
impl Copy for _zend_ast_decl
Auto Trait Implementations
impl RefUnwindSafe for _zend_ast_decl
impl !Send for _zend_ast_decl
impl !Sync for _zend_ast_decl
impl Unpin for _zend_ast_decl
impl UnwindSafe for _zend_ast_decl
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