pub enum ArenaSymbol<T: ArenaTypes> {
Fn(Arc<T::Fn>),
Builtin(Arc<str>),
Namespace {
name: Arc<str>,
members: Vec<(Arc<str>, NanValue)>,
},
NullaryVariant {
ctor_id: u32,
},
}Variants§
Trait Implementations§
Source§impl<T: Clone + ArenaTypes> Clone for ArenaSymbol<T>
impl<T: Clone + ArenaTypes> Clone for ArenaSymbol<T>
Source§fn clone(&self) -> ArenaSymbol<T>
fn clone(&self) -> ArenaSymbol<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for ArenaSymbol<T>
impl<T> RefUnwindSafe for ArenaSymbol<T>
impl<T> Send for ArenaSymbol<T>
impl<T> Sync for ArenaSymbol<T>
impl<T> Unpin for ArenaSymbol<T>
impl<T> UnsafeUnpin for ArenaSymbol<T>
impl<T> UnwindSafe for ArenaSymbol<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more