pub struct SimulatedRead {
pub name: String,
pub bases: Vec<u8>,
pub qualities: Vec<u8>,
}Expand description
A single simulated read with bases, quality scores, and metadata.
Fields§
§name: StringRead name (shared between R1 and R2 of a pair).
bases: Vec<u8>Base sequence (possibly with errors applied).
qualities: Vec<u8>Quality scores (Phred+33 encoded).
Trait Implementations§
Source§impl Clone for SimulatedRead
impl Clone for SimulatedRead
Source§fn clone(&self) -> SimulatedRead
fn clone(&self) -> SimulatedRead
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 SimulatedRead
impl RefUnwindSafe for SimulatedRead
impl Send for SimulatedRead
impl Sync for SimulatedRead
impl Unpin for SimulatedRead
impl UnsafeUnpin for SimulatedRead
impl UnwindSafe for SimulatedRead
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