pub enum FlatItem {
Show 19 variants
String(String),
Comment,
Exp(Expr),
If(Expr),
Else,
Elif(Expr),
For(String, String, Expr),
AtLet(String),
AtExport(String),
Define(String, Vec<String>),
Global(String, Vec<String>),
Let(Vec<(String, Expr)>),
Export(Vec<(String, Expr)>),
Block(String, Vec<Expr>),
EndBlock(String),
Return(Expr),
Switch(Expr),
Case(Vec<Pattern>),
As(Expr, Pattern),
}Variants§
String(String)
Comment
Exp(Expr)
If(Expr)
Else
Elif(Expr)
For(String, String, Expr)
AtLet(String)
AtExport(String)
Define(String, Vec<String>)
Global(String, Vec<String>)
Let(Vec<(String, Expr)>)
Export(Vec<(String, Expr)>)
Block(String, Vec<Expr>)
EndBlock(String)
Return(Expr)
Switch(Expr)
Case(Vec<Pattern>)
As(Expr, Pattern)
Trait Implementations§
impl StructuralPartialEq for FlatItem
Auto Trait Implementations§
impl Freeze for FlatItem
impl RefUnwindSafe for FlatItem
impl Send for FlatItem
impl Sync for FlatItem
impl Unpin for FlatItem
impl UnwindSafe for FlatItem
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more