use-tissue 0.1.0

Primitive tissue vocabulary for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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.

```rust
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");
```