pub struct FastqRecord { /* private fields */ }Implementations§
Source§impl FastqRecord
impl FastqRecord
pub fn from_strs( tag: &str, seq: &str, qual: &str, phred_offset: u8, ) -> Result<Self>
pub fn len(&self) -> usize
pub fn tag(&self) -> &str
pub fn set_tag<S: Into<String>>(&mut self, tag: S)
pub fn seq_bytes(&self) -> &[u8] ⓘ
pub fn qual_bytes(&self) -> &[u8] ⓘ
pub fn seq_string(&self) -> String
pub fn qual_string(&self, phred_offset: u8) -> String
Trait Implementations§
Source§impl Clone for FastqRecord
impl Clone for FastqRecord
Source§fn clone(&self) -> FastqRecord
fn clone(&self) -> FastqRecord
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 FastqRecord
impl RefUnwindSafe for FastqRecord
impl Send for FastqRecord
impl Sync for FastqRecord
impl Unpin for FastqRecord
impl UnwindSafe for FastqRecord
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