Enum purescript_corefn::Binder[][src]

pub enum Binder {
    Constructor {
        constructor: ModuleAndIdentifier,
        type_: ModuleAndIdentifier,
        binders: Vec<Binder>,
    },
    Literal {
        literal: LiteralBinder,
    },
    Named {
        identifier: String,
        binder: Box<Binder>,
    },
    Null {},
    Var {
        identifier: String,
    },
}

Variants

Fields of Constructor

Fields of Literal

Fields of Named

Fields of Null

Fields of Var

Trait Implementations

impl Debug for Binder
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Binder

impl Sync for Binder