1crate::ix!(); 2 3/// Trait for normalizing the case of a name (e.g., lowercase). 4pub trait NormalizeName { 5 /// Normalizes the name to a consistent case (e.g., lowercase). 6 fn normalize_name(&mut self) -> Result<(), NameError>; 7} 8 9