pub struct TrieNode<TransTable: TransitionTable> {
pub accept: bool,
/* private fields */
}Fields§
§accept: boolImplementations§
Source§impl<TransTable: TransitionTable> TrieNode<TransTable>
impl<TransTable: TransitionTable> TrieNode<TransTable>
pub fn get_trans(&self) -> &TransTable
pub fn get_parent(&self) -> TrieNodeID
Trait Implementations§
Auto Trait Implementations§
impl<TransTable> Freeze for TrieNode<TransTable>where
TransTable: Freeze,
impl<TransTable> RefUnwindSafe for TrieNode<TransTable>where
TransTable: RefUnwindSafe,
impl<TransTable> Send for TrieNode<TransTable>where
TransTable: Send,
impl<TransTable> Sync for TrieNode<TransTable>where
TransTable: Sync,
impl<TransTable> Unpin for TrieNode<TransTable>where
TransTable: Unpin,
impl<TransTable> UnwindSafe for TrieNode<TransTable>where
TransTable: UnwindSafe,
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