pub type PrefixLookupResult = Result<EntryIndex, ()>;
Expand description
A way to indicate if a lookup, despite successful, was ambiguous or yielded exactly one result in the particular index.
Aliased Type§
enum PrefixLookupResult {
Ok(u32),
Err(()),
}