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) -> Option<&str>
pub fn quality_score(&self) -> Option<&str>
Returns the quality score.
Trait Implementations§
source§impl PartialEq<Record> for Record
impl PartialEq<Record> for Record
impl Eq for Record
impl StructuralEq for Record
impl StructuralPartialEq for Record
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.