pub trait ToothDisplay {
// Required method
fn format(
notation: &NotationKind,
permanent: bool,
selected_value: &Option<Tooth>,
) -> String;
}Expand description
Trait needed to format a complete jaw
Required Methods§
fn format( notation: &NotationKind, permanent: bool, selected_value: &Option<Tooth>, ) -> String
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.