Struct handlebox::HandleBox [] [src]

pub struct HandleBox<V> {
    pub map: BTreeMap<Handle, V>,
    // some fields omitted
}

A map-like collection that reuses unused keys. Hard-coded to use u32 keys right now. Exposes the internal map field if you need to access it directly.

Fields

Methods

impl<V> HandleBox<V>
[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<V: Default> Default for HandleBox<V>
[src]

[src]

Returns the "default value" for a type. Read more