Struct noodles_vcf::lazy::record::Record
source · pub struct Record { /* private fields */ }
Expand description
An immutable, lazily-evaluated VCF record.
Implementations§
source§impl Record
impl Record
sourcepub fn chromosome(&self) -> &str
pub fn chromosome(&self) -> &str
Returns the chromosome.
sourcepub fn reference_bases(&self) -> &str
pub fn reference_bases(&self) -> &str
Returns the reference bases.
sourcepub fn alternate_bases(&self) -> &str
pub fn alternate_bases(&self) -> &str
Returns the alternate bases.
sourcepub fn quality_score(&self) -> &str
pub fn quality_score(&self) -> &str
Returns the quality score.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
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