Trait nanbox::NanBoxable [] [src]

pub trait NanBoxable: Sized {
    unsafe fn from_nan_box(n: NanBox) -> Self;
    fn into_nan_box(self) -> NanBox;

    fn pack_nan_box(self, tag: u8) -> NanBox { ... }
    unsafe fn unpack_nan_box(value: NanBox) -> Self { ... }
}

Required Methods

Provided Methods

Implementors