pub type Position = LoudsNodeNum;
Expand description
Search position in the trie.
§Why do this?
“Position” is more descriptive for incremental search purposes, and without
it a user would have to explicitly depend on louds-rs
.
Aliased Type§
struct Position(pub u64);
Fields§
§0: u64
Trait Implementations§
Source§impl<'a, L, V> From<IncSearch<'a, L, V>> for Position
Retrieve the position the search is on. Useful for hanging on to a search
without having to fight the borrow checker because its borrowing a trie.
impl<'a, L, V> From<IncSearch<'a, L, V>> for Position
Retrieve the position the search is on. Useful for hanging on to a search without having to fight the borrow checker because its borrowing a trie.
Source§impl Clone for LoudsNodeNum
impl Clone for LoudsNodeNum
Source§fn clone(&self) -> LoudsNodeNum
fn clone(&self) -> LoudsNodeNum
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more