use-life-stage 0.1.0

Primitive life stage vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    24 out of 24 items documented1 out of 9 items with examples
  • Size
  • Source code size: 9.79 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 582.83 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-life-stage

Primitive life stage and development stage vocabulary.

use-life-stage supports descriptive animal, plant, fungal, and microbial stages. It does not model developmental biology processes, infer age, or implement lifecycle simulation.

use use_life_stage::{DevelopmentStage, LifeStage};

let stage = DevelopmentStage::new(LifeStage::Flowering)
    .with_label("anthesis")
    .unwrap();

assert_eq!(stage.stage(), &LifeStage::Flowering);
assert_eq!(stage.label(), Some("anthesis"));