[][src]Trait gluon_vm::core::ArenaAllocatable

pub trait ArenaAllocatable<'a>: Sized {
    fn alloc_into(self, allocator: &'a Allocator<'a>) -> &'a Self;
fn alloc_iter_into(
        iter: impl IntoIterator<Item = Self>,
        allocator: &'a Allocator<'a>
    ) -> &'a [Self]; }

Required methods

fn alloc_into(self, allocator: &'a Allocator<'a>) -> &'a Self

fn alloc_iter_into(
    iter: impl IntoIterator<Item = Self>,
    allocator: &'a Allocator<'a>
) -> &'a [Self]

Loading content...

Implementors

impl<'a> ArenaAllocatable<'a> for Expr<'a>[src]

impl<'a> ArenaAllocatable<'a> for Alternative<'a>[src]

impl<'a> ArenaAllocatable<'a> for LetBinding<'a>[src]

Loading content...