Enum arret_compiler::repl::EvaledLine[][src]

pub enum EvaledLine {
    EmptyInput,
    Defs(Vec<DataStr>),
    ExprType(String),
    ExprValue(EvaledExprValue),
}

Variants

EmptyInput

Line was all whitepsace

Defs(Vec<DataStr>)

Line added new definitions

All bound identifiers in the root scope are returned. This is useful for tab & autocompletion.

ExprType(String)

Line was evaluated to a type with the given name

ExprValue(EvaledExprValue)

Line was evaluate to a value

Trait Implementations

impl Debug for EvaledLine[src]

impl PartialEq<EvaledLine> for EvaledLine[src]

impl StructuralPartialEq for EvaledLine[src]

Auto Trait Implementations

impl RefUnwindSafe for EvaledLine

impl Send for EvaledLine

impl Sync for EvaledLine

impl Unpin for EvaledLine

impl UnwindSafe for EvaledLine

Blanket Implementations

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

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

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

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

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

impl<T> PartialEqInHeap for T where
    T: PartialEq<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.