Struct arret_compiler::repl::EvaledExprValue[][src]

pub struct EvaledExprValue {
    pub type_str: String,
    pub value_str: String,
    pub type_is_literal: bool,
}

Fields

type_str: String

Rendered type of the expression

value_str: String

Rendered value of the expression

type_is_literal: bool

Indicates if the type is a literal

REPL implementations may want to suppress printing the type of literal values as they contain no additional information.

Trait Implementations

impl Debug for EvaledExprValue[src]

impl PartialEq<EvaledExprValue> for EvaledExprValue[src]

impl StructuralPartialEq for EvaledExprValue[src]

Auto Trait Implementations

impl RefUnwindSafe for EvaledExprValue

impl Send for EvaledExprValue

impl Sync for EvaledExprValue

impl Unpin for EvaledExprValue

impl UnwindSafe for EvaledExprValue

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.