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§
Sourcefn is_missing(&self) -> bool
fn is_missing(&self) -> bool
Return true if entry is a missing value
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.