pub enum Expr {
Show 20 variants
Apply(Apply),
Assert(Assert),
Error(Error),
IfElse(IfElse),
Select(Select),
Str(Str),
Path(Path),
Literal(Literal),
Lambda(Lambda),
LegacyLet(LegacyLet),
LetIn(LetIn),
List(List),
BinOp(BinOp),
Paren(Paren),
Root(Root),
AttrSet(AttrSet),
UnaryOp(UnaryOp),
Ident(Ident),
With(With),
HasAttr(HasAttr),
}
Expand description
An expression. The fundamental nix ast type.
Variants§
Apply(Apply)
Assert(Assert)
Error(Error)
IfElse(IfElse)
Select(Select)
Str(Str)
Path(Path)
Literal(Literal)
Lambda(Lambda)
LegacyLet(LegacyLet)
LetIn(LetIn)
List(List)
BinOp(BinOp)
Paren(Paren)
Root(Root)
AttrSet(AttrSet)
UnaryOp(UnaryOp)
Ident(Ident)
With(With)
HasAttr(HasAttr)
Trait Implementations§
source§impl AstNode for Expr
impl AstNode for Expr
type Language = NixLanguage
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
source§impl PartialEq for Expr
impl PartialEq for Expr
impl Eq for Expr
impl StructuralPartialEq for Expr
Auto Trait Implementations§
impl Freeze for Expr
impl !RefUnwindSafe for Expr
impl !Send for Expr
impl !Sync for Expr
impl Unpin for Expr
impl !UnwindSafe for Expr
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)