use-species 0.1.0

Primitive species naming vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    28 out of 28 items documented1 out of 24 items with examples
  • Size
  • Source code size: 12.25 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 877.69 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 6s Average build duration of successful builds.
  • all releases: 6s 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-species

Primitive species naming vocabulary.

use-species stores descriptive binomial, trinomial, and custom species names. It does not validate against taxonomy databases, resolve synonyms, fetch metadata, infer rank, or infer lineage.

use use_species::{BinomialName, GenusName, SpecificEpithet};

let name = BinomialName::new(
    GenusName::new("Escherichia").unwrap(),
    SpecificEpithet::new("coli").unwrap(),
);

assert_eq!(name.to_string(), "Escherichia coli");