pub enum AlgoSpec {
HashMatch(usize),
TreeMatch(usize),
}Expand description
Variants§
HashMatch(usize)
The parameter is the minimal matching length which will determine the
HashMatchKey used.
TreeMatch(usize)
The parameter is the minimal matching length.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AlgoSpec
impl RefUnwindSafe for AlgoSpec
impl Send for AlgoSpec
impl Sync for AlgoSpec
impl Unpin for AlgoSpec
impl UnwindSafe for AlgoSpec
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