Struct gluon_base::fixed::FixedMap [] [src]

pub struct FixedMap<K, V> {
    // some fields omitted
}

Methods

impl<K: Eq + Hash, V> FixedMap<K, V>
[src]

fn new() -> FixedMap<K, V>

fn clear(&mut self)

fn try_insert(&self, key: K, value: V) -> Result<()(K, V)>

fn len(&self) -> usize

fn is_empty(&self) -> bool

fn get(&self, k: &K) -> Option<&V>

Trait Implementations

impl<K: Eq + Hash, V> Default for FixedMap<K, V>
[src]

fn default() -> FixedMap<K, V>

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

impl<K: Eq + Hash + Debug, V: Debug> Debug for FixedMap<K, V>
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.