pub enum ReadCollection {
SingleRead(Record),
ManyReads(Vec<Record>),
}
Expand description
Abstraction so ReadFreq can hold a single best read for it’s read signature or hold all reads for it’s read signature (used for –group_only).
Variants§
Trait Implementations§
Source§impl Clone for ReadCollection
impl Clone for ReadCollection
Source§fn clone(&self) -> ReadCollection
fn clone(&self) -> ReadCollection
Returns a copy 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 moreSource§impl Debug for ReadCollection
impl Debug for ReadCollection
Source§impl PartialEq for ReadCollection
impl PartialEq for ReadCollection
impl StructuralPartialEq for ReadCollection
Auto Trait Implementations§
impl Freeze for ReadCollection
impl RefUnwindSafe for ReadCollection
impl Send for ReadCollection
impl Sync for ReadCollection
impl Unpin for ReadCollection
impl UnwindSafe for ReadCollection
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