pub trait ToTitle { // Required method fn to_title(&self) -> String; }
A trait for converting string to titlecased.
Returns a titlecased string.