Expand description
§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");Structs§
- Cell
Type - A descriptive cell type label with a broad cell kind.
Enums§
- Cell
Kind - Broad cell kind vocabulary.
- Cell
Kind Parse Error - Error returned when parsing a cell kind fails.
- Cell
Name Error - Error returned when cell labels are empty.
- Cell
Organelle - Primitive cell organelle vocabulary.
- Cell
Organelle Parse Error - Error returned when parsing a cell organelle fails.
- Cell
Structure - A primitive cell structure reference.