pub struct KeywordTrie {
pub is_keyword: bool,
/* private fields */
}Expand description
A keyword trie node for fast keyword detection.
Fields§
§is_keyword: boolWhether this node is a terminal keyword
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeywordTrie
impl RefUnwindSafe for KeywordTrie
impl Send for KeywordTrie
impl Sync for KeywordTrie
impl Unpin for KeywordTrie
impl UnsafeUnpin for KeywordTrie
impl UnwindSafe for KeywordTrie
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