Trait gluon_vm::core::ArenaAllocatable
source · pub trait ArenaAllocatable<'a>: Sized {
// 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];
}
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]
Object Safety§
This trait is not object safe.