dental_notation/display/mod.rs
1//! Formatters to display a complete jaw.
2
3pub use crate::display::cli::*;
4use crate::NotationKind;
5use crate::Tooth;
6use alloc::string::String;
7mod cli;
8
9enum JawKind {
10 Top,
11 Bottom,
12}
13
14/// Trait needed to format a complete jaw
15pub trait ToothDisplay {
16 fn format(notation: &NotationKind, permanent: bool, selected_value: &Option<Tooth>) -> String;
17}