use-reproduction 0.1.0

Primitive reproduction vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    22 out of 22 items documented1 out of 5 items with examples
  • Size
  • Source code size: 10.07 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 585.66 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-reproduction

Primitive reproduction vocabulary.

use-reproduction stores descriptive reproduction and fertilization terms. It does not implement genetics simulation, population dynamics, fertility modeling, or medical interpretation.

use use_reproduction::{FertilizationMode, ReproductionMode};

let reproduction: ReproductionMode = "spore formation".parse().unwrap();
let fertilization: FertilizationMode = "external".parse().unwrap();

assert_eq!(reproduction.to_string(), "spore-formation");
assert_eq!(fertilization.to_string(), "external");