pub(crate) struct UniqueSeqTable<T: PartialEq + Clone> {
table: Vec<T>,
}
Expand description
A table of sequences which tries to avoid common subsequences.
Fields§
§table: Vec<T>
Implementations§
Auto Trait Implementations§
impl<T> Freeze for UniqueSeqTable<T>
impl<T> RefUnwindSafe for UniqueSeqTable<T>where
T: RefUnwindSafe,
impl<T> Send for UniqueSeqTable<T>where
T: Send,
impl<T> Sync for UniqueSeqTable<T>where
T: Sync,
impl<T> Unpin for UniqueSeqTable<T>where
T: Unpin,
impl<T> UnwindSafe for UniqueSeqTable<T>where
T: 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