use-tissue 0.1.0

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

Primitive tissue vocabulary.

use-tissue supports descriptive animal and plant tissue names and kinds. It is not human-only, and it does not implement histology analysis, medical diagnosis, or tissue behavior simulation.

use use_tissue::{TissueKind, TissueName};

let name = TissueName::new("xylem").unwrap();
let kind: TissueKind = "vascular".parse().unwrap();

assert_eq!(name.to_string(), "xylem");
assert_eq!(kind.to_string(), "vascular");