pub struct PairedRead {
pub name: String,
pub is_next: bool,
pub is_proper: bool,
}Expand description
Information about the paired alignment.
Fields§
§name: StringName of the pair.
is_next: boolIs the pair the next the next fragment?
is_proper: boolAre the alignments properly paired?
Trait Implementations§
Source§impl Clone for PairedRead
impl Clone for PairedRead
Source§fn clone(&self) -> PairedRead
fn clone(&self) -> PairedRead
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 moreSource§impl Debug for PairedRead
impl Debug for PairedRead
Source§impl PartialEq for PairedRead
impl PartialEq for PairedRead
impl Eq for PairedRead
impl StructuralPartialEq for PairedRead
Auto Trait Implementations§
impl Freeze for PairedRead
impl RefUnwindSafe for PairedRead
impl Send for PairedRead
impl Sync for PairedRead
impl Unpin for PairedRead
impl UnsafeUnpin for PairedRead
impl UnwindSafe for PairedRead
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