pub struct FastaVisitRecord<'a> { /* private fields */ }Expand description
Borrowed FASTA record passed to FastaReader::visit_records.
Implementations§
Source§impl<'a> FastaVisitRecord<'a>
impl<'a> FastaVisitRecord<'a>
Sourcepub fn name_without_gt(self) -> &'a [u8] ⓘ
pub fn name_without_gt(self) -> &'a [u8] ⓘ
Return the header line without a leading >.
Trait Implementations§
Source§impl<'a> Clone for FastaVisitRecord<'a>
impl<'a> Clone for FastaVisitRecord<'a>
Source§fn clone(&self) -> FastaVisitRecord<'a>
fn clone(&self) -> FastaVisitRecord<'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 FastaVisitRecord<'a>
Auto Trait Implementations§
impl<'a> Freeze for FastaVisitRecord<'a>
impl<'a> RefUnwindSafe for FastaVisitRecord<'a>
impl<'a> Send for FastaVisitRecord<'a>
impl<'a> Sync for FastaVisitRecord<'a>
impl<'a> Unpin for FastaVisitRecord<'a>
impl<'a> UnsafeUnpin for FastaVisitRecord<'a>
impl<'a> UnwindSafe for FastaVisitRecord<'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