pub struct GenomeHitSet {
pub genome_id: String,
pub hits: Vec<Hit>,
}Expand description
Hits for one genome after batch-cluster expansion. Emitted in original
input order so downstream code can pair them up with GenomeInput by
index without extra lookups.
Fields§
§genome_id: String§hits: Vec<Hit>Trait Implementations§
Source§impl Clone for GenomeHitSet
impl Clone for GenomeHitSet
Source§fn clone(&self) -> GenomeHitSet
fn clone(&self) -> GenomeHitSet
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 Freeze for GenomeHitSet
impl RefUnwindSafe for GenomeHitSet
impl Send for GenomeHitSet
impl Sync for GenomeHitSet
impl Unpin for GenomeHitSet
impl UnsafeUnpin for GenomeHitSet
impl UnwindSafe for GenomeHitSet
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