1 2 3 4 5 6 7 8 9
/// Types which have a text representation that: /// /// * Is human readable /// * Is not minimally formatted /// * Is unambiguous /// * Does not include metadata pub trait ToText { fn to_text(&self) -> String; }