pub struct FastqVisitRecord<'a> { /* private fields */ }Expand description
Borrowed FASTQ record passed to FastqReader::visit_records.
This view is optimized for single-pass consumers that do not need the batch side table. The slices point directly into the reader slab and are valid only for the duration of the visitor callback.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for FastqVisitRecord<'a>
impl<'a> Clone for FastqVisitRecord<'a>
Source§fn clone(&self) -> FastqVisitRecord<'a>
fn clone(&self) -> FastqVisitRecord<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for FastqVisitRecord<'a>
Auto Trait Implementations§
impl<'a> Freeze for FastqVisitRecord<'a>
impl<'a> RefUnwindSafe for FastqVisitRecord<'a>
impl<'a> Send for FastqVisitRecord<'a>
impl<'a> Sync for FastqVisitRecord<'a>
impl<'a> Unpin for FastqVisitRecord<'a>
impl<'a> UnsafeUnpin for FastqVisitRecord<'a>
impl<'a> UnwindSafe for FastqVisitRecord<'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