use-biological-cell 0.1.0

Primitive cell vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    41 out of 41 items documented1 out of 12 items with examples
  • Size
  • Source code size: 13.96 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 832.81 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 3s Average build duration of successful builds.
  • all releases: 3s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-biology
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-biological-cell

Primitive cell vocabulary.

use-biological-cell models descriptive cell kinds, organelles, cell types, and cell structures. It does not model cell dynamics, simulate metabolism, model molecular biology pathways, or implement microscopy/image analysis.

use use_cell::{CellKind, CellOrganelle, CellStructure, CellType};

let cell_type = CellType::new("guard cell", CellKind::Plant).unwrap();
let structure = CellStructure::from(CellOrganelle::Chloroplast);

assert_eq!(cell_type.name(), "guard cell");
assert_eq!(structure.to_string(), "chloroplast");