pub struct RefRecord<'a> {
pub rid: usize,
pub seq: &'a [u8],
pub qual: &'a [u8],
pub read_starts: &'a [u32],
pub read_lens: &'a [u32],
pub read_types: &'a [u8],
}Fields§
§rid: usizeRow ID (Spot ID)
seq: &'a [u8]Spot sequence
qual: &'a [u8]Spot quality
read_starts: &'a [u32]Read segment start positions
read_lens: &'a [u32]Read segment lengths
read_types: &'a [u8]Read segment types
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RefRecord<'a>
impl<'a> RefUnwindSafe for RefRecord<'a>
impl<'a> Send for RefRecord<'a>
impl<'a> Sync for RefRecord<'a>
impl<'a> Unpin for RefRecord<'a>
impl<'a> UnwindSafe for RefRecord<'a>
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