pub enum IndexType {
Taxon,
Assembly,
}
Expand description
The indexes we make searches over in GoaT.
Currently implemented (to some extent) is taxon and assembly. Others exist, e.g. feature/sample.
Each tuple variant can store their respective
std::collections::BTreeMap
databases.
Variants§
Taxon
Taxon search index. The historical main functionality of goat-cli went through taxon.
Assembly
Assembly search index.
Trait Implementations§
impl Copy for IndexType
Auto Trait Implementations§
impl Freeze for IndexType
impl RefUnwindSafe for IndexType
impl Send for IndexType
impl Sync for IndexType
impl Unpin for IndexType
impl UnwindSafe for IndexType
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