[][src]Struct voile::syntax::core::ast::Closure

pub struct Closure {
    pub body: Box<Val>,
}

A closure with parameter type explicitly specified.

Fields

body: Box<Val>

Methods

impl Closure[src]

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

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

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

Trait Implementations

impl LiftEx for Closure[src]

fn level(&self) -> Level[src]

Calculate the level of self, like a normal value will have level 0, a type expression will have level 1 (or higher). Read more

impl Eq for Closure[src]

impl PartialEq<Closure> for Closure[src]

impl Clone for Closure[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Closure[src]

impl Display for Closure[src]

Auto Trait Implementations

impl Send for Closure

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