This page requires javascript to work

[][src]Enum voile::syntax::core::Closure

pub enum Closure {
    Plain(Box<Val>),
    Tree(CaseSplit),
}

A closure with parameter type explicitly specified.

Variants

Plain(Box<Val>)
Tree(CaseSplit)

Methods

impl Closure[src]

pub fn instantiate(self, arg: Val) -> Val[src]

pub fn instantiate_safe(self, arg: Val) -> Result<Val, Val>[src]

pub fn instantiate_cloned(&self, arg: Val) -> Val[src]

pub fn instantiate_borrow(&self, arg: &Val) -> Val[src]

impl Closure[src]

pub fn plain(body: Val) -> Self[src]

Trait Implementations

impl TraverseNeutral for Closure[src]

impl RedEx<Closure> for Closure[src]

impl Eq for Closure[src]

impl Default for Closure[src]

impl Clone for Closure[src]

impl PartialEq<Closure> for Closure[src]

impl Debug for Closure[src]

impl Display for Closure[src]

impl LiftEx for Closure[src]

Auto Trait Implementations

impl Send for Closure

impl Unpin for Closure

impl Sync for Closure

impl UnwindSafe for Closure

impl RefUnwindSafe for Closure

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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]