pub struct ReadBatch { /* private fields */ }Expand description
A batch of paired-end reads to map.
All slices must have the same length (count). Sequences are ASCII
DNA strings (ACGTN) and qualities are phred+33 ASCII strings.
Implementations§
Source§impl ReadBatch
impl ReadBatch
Sourcepub fn with_capacity(n: usize) -> Self
pub fn with_capacity(n: usize) -> Self
Create a batch with pre-allocated capacity for n pairs.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadBatch
impl RefUnwindSafe for ReadBatch
impl Send for ReadBatch
impl Sync for ReadBatch
impl Unpin for ReadBatch
impl UnsafeUnpin for ReadBatch
impl UnwindSafe for ReadBatch
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