use-organism 0.1.0

Primitive organism identity and classification vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    30 out of 30 items documented1 out of 19 items with examples
  • Size
  • Source code size: 12.97 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 768.95 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-organism

Primitive organism identity and classification vocabulary.

use-organism models organism identifiers, names, broad kinds, and descriptive links to taxonomy or species primitives. The Virus kind is descriptive and does not assert whether viruses are living organisms. This crate does not create organism databases, infer taxonomy, model ecology, or model medical/pathogen behavior.

use use_organism::{OrganismClassification, OrganismKind};

let classification = OrganismClassification::new(OrganismKind::Virus);

assert_eq!(classification.kind(), &OrganismKind::Virus);
assert!(classification.taxon().is_none());