pub(crate) trait ZeroTrieWithOptions {
const OPTIONS: ZeroTrieBuilderOptions;
}
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
Source§impl<S: ?Sized> ZeroTrieWithOptions for ZeroAsciiIgnoreCaseTrie<S>
All branch nodes are binary search
and nodes use case-insensitive matching.
impl<S: ?Sized> ZeroTrieWithOptions for ZeroAsciiIgnoreCaseTrie<S>
All branch nodes are binary search and nodes use case-insensitive matching.
Source§impl<S: ?Sized> ZeroTrieWithOptions for ZeroTrieExtendedCapacity<S>
No limited capacity assertion.
impl<S: ?Sized> ZeroTrieWithOptions for ZeroTrieExtendedCapacity<S>
No limited capacity assertion.
Source§impl<S: ?Sized> ZeroTrieWithOptions for ZeroTriePerfectHash<S>
Branch nodes could be either binary search or PHF.
impl<S: ?Sized> ZeroTrieWithOptions for ZeroTriePerfectHash<S>
Branch nodes could be either binary search or PHF.
Source§impl<S: ?Sized> ZeroTrieWithOptions for ZeroTrieSimpleAscii<S>
All branch nodes are binary search
and there are no span nodes.
impl<S: ?Sized> ZeroTrieWithOptions for ZeroTrieSimpleAscii<S>
All branch nodes are binary search and there are no span nodes.