pub struct GeneralSamNode<TransTable: TransitionTable> { /* private fields */ }
Implementations§
Source§impl<TransTable: TransitionTable> GeneralSamNode<TransTable>
impl<TransTable: TransitionTable> GeneralSamNode<TransTable>
pub fn is_accepting(&self) -> bool
pub fn max_suffix_len(&self) -> usize
pub fn get_suffix_parent_id(&self) -> GeneralSamNodeID
pub fn get_trans(&self) -> &TransTable
Trait Implementations§
Source§impl<TransTable: Clone + TransitionTable> Clone for GeneralSamNode<TransTable>
impl<TransTable: Clone + TransitionTable> Clone for GeneralSamNode<TransTable>
Source§fn clone(&self) -> GeneralSamNode<TransTable>
fn clone(&self) -> GeneralSamNode<TransTable>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<TransTable> Freeze for GeneralSamNode<TransTable>where
TransTable: Freeze,
impl<TransTable> RefUnwindSafe for GeneralSamNode<TransTable>where
TransTable: RefUnwindSafe,
impl<TransTable> Send for GeneralSamNode<TransTable>where
TransTable: Send,
impl<TransTable> Sync for GeneralSamNode<TransTable>where
TransTable: Sync,
impl<TransTable> Unpin for GeneralSamNode<TransTable>where
TransTable: Unpin,
impl<TransTable> UnwindSafe for GeneralSamNode<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