pub trait Numeric {
    // Required methods
    fn is_missing(&self) -> bool;
    fn missing() -> Self;
}
Expand description

Common methods for numeric INFO and FORMAT entries

Required Methods§

source

fn is_missing(&self) -> bool

Return true if entry is a missing value

source

fn missing() -> Self

Return missing value for storage in BCF record.

Implementations on Foreign Types§

source§

impl Numeric for i32

source§

impl Numeric for f32

Implementors§