Struct fastq::RefRecord[][src]

pub struct RefRecord<'a> { /* fields omitted */ }

A fastq record that borrows data from an array.

Methods

impl<'a> RefRecord<'a>
[src]

Copy the borrowed data array and return an owned record.

Trait Implementations

impl<'a> Debug for RefRecord<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> Record for RefRecord<'a>
[src]

Return the id-line of the record as byte slice

Return the fastq sequence as byte slice

Return the quality of the bases as byte slice

Write the record to a writer

Return true if the sequence contains only A, C, T and G. Read more

Return true if the sequence contains only A, C, T, G and N. Read more

Auto Trait Implementations

impl<'a> Send for RefRecord<'a>

impl<'a> Sync for RefRecord<'a>