pub(crate) enum PhfMode {
BinaryOnly,
UsePhf,
}
Expand description
Whether to use the perfect hash function in the ZeroTrie.
Variants§
BinaryOnly
Use binary search for all branch nodes.
UsePhf
Use the perfect hash function for large branch nodes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PhfMode
impl RefUnwindSafe for PhfMode
impl Send for PhfMode
impl Sync for PhfMode
impl Unpin for PhfMode
impl UnwindSafe for PhfMode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more