#[repr(C)]pub struct AstStatError {
pub base: AstStat,
pub expressions: AstArray<*mut AstExpr>,
pub statements: AstArray<*mut AstStat>,
pub message_index: u32,
}Fields§
§base: AstStat§expressions: AstArray<*mut AstExpr>§statements: AstArray<*mut AstStat>§message_index: u32Implementations§
Trait Implementations§
Source§impl AstNodeClass for AstStatError
impl AstNodeClass for AstStatError
Source§const CLASS_INDEX: i32
const CLASS_INDEX: i32
The node’s RTTI id; mirrors
T::ClassIndex().Source§impl AstVisitable for AstStatError
impl AstVisitable for AstStatError
fn visit(&self, visitor: &mut dyn AstVisitor)
Auto Trait Implementations§
impl !Send for AstStatError
impl !Sync for AstStatError
impl Freeze for AstStatError
impl RefUnwindSafe for AstStatError
impl Unpin for AstStatError
impl UnsafeUnpin for AstStatError
impl UnwindSafe for AstStatError
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