Trait rust_htslib::bcf::record::Numeric [] [src]

pub trait Numeric {
    fn is_missing(&self) -> bool;
    fn missing() -> Self;
}

Common methods for numeric INFO and FORMAT entries

Required Methods

fn is_missing(&self) -> bool

Return true if entry is a missing value

fn missing() -> Self

Return missing value for storage in BCF record.

Implementors