pub enum Stat {
Show 14 variants
IfStat(IfStat),
WhileStat(WhileStat),
DoBlock(DoBlock),
ForStat(ForStat),
RepeatStat(RepeatStat),
FuncStat(FuncStat),
LocalStat(LocalStat),
LabelStat(LabelStat),
RetStat(RetStat),
BreakStat(BreakStat),
GotoStat(GotoStat),
AssignStat(AssignStat),
CallStat(CallStat),
CommentStat(CommentStat),
}
Variants§
IfStat(IfStat)
WhileStat(WhileStat)
DoBlock(DoBlock)
ForStat(ForStat)
RepeatStat(RepeatStat)
FuncStat(FuncStat)
LocalStat(LocalStat)
LabelStat(LabelStat)
RetStat(RetStat)
BreakStat(BreakStat)
GotoStat(GotoStat)
AssignStat(AssignStat)
CallStat(CallStat)
CommentStat(CommentStat)
Implementations§
Trait Implementations§
impl StructuralPartialEq for Stat
Auto Trait Implementations§
impl Freeze for Stat
impl RefUnwindSafe for Stat
impl Send for Stat
impl Sync for Stat
impl Unpin for Stat
impl UnwindSafe for Stat
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