Enum string_cache_shared::UnpackedAtom [] [src]

pub enum UnpackedAtom {
    Dynamic(*mut ()),
    Inline(u8, [u8; 7]),
    Static(u32),
}

Variants

Dynamic

Pointer to a dynamic table entry. Must be 16-byte aligned!

Inline

Length + bytes of string.

Static

Index in static interning table.

Methods

impl UnpackedAtom

unsafe fn pack(self) -> u64

unsafe fn from_packed(data: u64) -> UnpackedAtom