use-biological-system 0.1.0

Primitive biological system vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    23 out of 23 items documented1 out of 8 items with examples
  • Size
  • Source code size: 10.49 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 591.19 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-system

Primitive biological system vocabulary.

use-biological-system models descriptive animal and plant biological systems without using the generic crate name use-system. It does not implement physiology simulation, disease modeling, or human-only system assumptions.

use use_biological_system::{BiologicalSystem, BiologicalSystemKind};

let system = BiologicalSystem::new("root system", BiologicalSystemKind::RootSystem).unwrap();

assert_eq!(system.name(), "root system");
assert_eq!(system.kind(), &BiologicalSystemKind::RootSystem);