[][src]Enum rnix::types::ParsedType

pub enum ParsedType {
    Apply(Apply),
    Assert(Assert),
    Key(Key),
    Dynamic(Dynamic),
    Error(Error),
    Ident(Ident),
    IfElse(IfElse),
    Select(Select),
    Inherit(Inherit),
    InheritFrom(InheritFrom),
    Lambda(Lambda),
    LegacyLet(LegacyLet),
    LetIn(LetIn),
    List(List),
    BinOp(BinOp),
    OrDefault(OrDefault),
    Paren(Paren),
    PatBind(PatBind),
    PatEntry(PatEntry),
    Pattern(Pattern),
    Root(Root),
    AttrSet(AttrSet),
    KeyValue(KeyValue),
    Str(Str),
    UnaryOp(UnaryOp),
    Value(Value),
    With(With),
}

Variants

Apply(Apply)Assert(Assert)Key(Key)Dynamic(Dynamic)Error(Error)Ident(Ident)IfElse(IfElse)Select(Select)Inherit(Inherit)InheritFrom(InheritFrom)Lambda(Lambda)LegacyLet(LegacyLet)LetIn(LetIn)List(List)BinOp(BinOp)OrDefault(OrDefault)Paren(Paren)PatBind(PatBind)PatEntry(PatEntry)Pattern(Pattern)Root(Root)AttrSet(AttrSet)KeyValue(KeyValue)Str(Str)UnaryOp(UnaryOp)Value(Value)With(With)

Trait Implementations

impl TryFrom<SyntaxNode<NixLanguage>> for ParsedType[src]

type Error = ParsedTypeError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]