This page requires javascript to work

[][src]Struct minitt::ast::GenericCase

pub struct GenericCase<Expression, Value: Clone> {
    pub expression: Expression,
    pub context: TelescopeRc<Value>,
}

Generic definition for three kinds of case trees

Fields

expression: Expressioncontext: TelescopeRc<Value>

Implementations

impl<Expression, Value: Clone> GenericCase<Expression, Value>[src]

pub fn new(expression: Expression, context: TelescopeRc<Value>) -> Self[src]

impl GenericCase<Either<Value, Expression>, Value>[src]

pub fn reduce_to_value(self) -> Value[src]

Trait Implementations

impl<Expression: Clone, Value: Clone> Clone for GenericCase<Expression, Value>[src]

impl<Expression: Debug, Value: Debug + Clone> Debug for GenericCase<Expression, Value>[src]

impl<Expr: Display, Value: Clone + Display> Display for GenericCase<Expr, Value>[src]

impl<Expression: Eq, Value: Eq + Clone> Eq for GenericCase<Expression, Value>[src]

impl<Expression: PartialEq, Value: PartialEq + Clone> PartialEq<GenericCase<Expression, Value>> for GenericCase<Expression, Value>[src]

impl<Expression, Value: Clone> StructuralEq for GenericCase<Expression, Value>[src]

impl<Expression, Value: Clone> StructuralPartialEq for GenericCase<Expression, Value>[src]

Auto Trait Implementations

impl<Expression, Value> !RefUnwindSafe for GenericCase<Expression, Value>

impl<Expression, Value> !Send for GenericCase<Expression, Value>

impl<Expression, Value> !Sync for GenericCase<Expression, Value>

impl<Expression, Value> Unpin for GenericCase<Expression, Value> where
    Expression: Unpin

impl<Expression, Value> !UnwindSafe for GenericCase<Expression, Value>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.