Struct qp_trie::VacantEntry [] [src]

pub struct VacantEntry<'a, K: 'a, V: 'a> { /* fields omitted */ }

A vacant entry in the trie.

Methods

impl<'a, K: 'a + Borrow<[u8]>, V: 'a> VacantEntry<'a, K, V>
[src]

[src]

Get a reference to the key associated with this vacant entry.

[src]

Consume the vacant entry to produce the associated key.

[src]

Insert a value into the vacant entry, returning a mutable reference to the newly inserted value.