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
/// Determine if model is complete.
pub trait Complete: Sized {
    /// Determine if model contains all possible information.
    fn is_complete(&self) -> bool;
}