Struct radix_trie::Trie

source ·
pub struct Trie<K, V> { /* private fields */ }
Expand description

Data-structure for storing and querying string-like keys and associated values.

Any keys which share a common prefix are stored below a single copy of that prefix. This saves space, and also allows the longest prefix of any given key to be found.

You can read more about Radix Tries on Wikipedia.

Lots of the methods on Trie return optional values - they can be composed nicely using Option::and_then.

Implementations§

Create an empty Trie.

Fetch a reference to the given key’s corresponding value, if any.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.

Fetch a mutable reference to the given key’s corresponding value, if any.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.

Insert the given key-value pair, returning any previous value associated with the key.

Remove the value associated with the given key.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.

Get a mutable reference to the value stored at this node, if any.

Fetch a reference to the subtrie for a given key.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.

Fetch a mutable reference to the subtrie for a given key.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.

Fetch a reference to the closest ancestor node of the given key.

If key is encoded as byte-vector b, return the node n in the tree such that n’s key’s byte-vector is the longest possible prefix of b, and n has a value.

Invariant: result.is_some() => result.key_value.is_some().

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.

Fetch the closest ancestor value for a given key.

See get_ancestor for precise semantics, this is just a shortcut.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type

Fetch the closest descendant for a given key.

If the key is in the trie, this is the same as subtrie.

The key may be any borrowed form of the trie’s key type, but TrieKey on the borrowed form must match those for the key type

Take a function f and apply it to the value stored at key.

If no value is stored at key, store default.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Creates a value from an iterator. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Number of key/value pairs stored in this trie.
Return an iterator over the child subtries of this node.
Get the key stored at this node, if any.
Get the value stored at this node, if any.
Determine if the Trie contains 0 key-value pairs.
Determine if the trie is a leaf node (has no children).
Return an iterator over the keys and values of the Trie.
Return an iterator over the keys of the Trie.
Return an iterator over the values of the Trie.
Get the prefix of this node.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.