use-biological-cell 0.1.0

Primitive cell vocabulary for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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.

```rust
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");
```