bdb 0.0.1

Efficient APIs to parse from and export to file formats commonly used in biology, for both proteomics and genetics workflows.
Documentation
1
2
3
4
5
6
/// Determine if model is valid.
pub trait Valid: Sized {
    /// Determine if model contains only valid information.
    fn is_valid(&self) -> bool;
}