pub trait Printing<T> {
fn to_str(self) -> String;
fn gr(self) -> String
where
Self: Sized,
{ ... }
}Expand description
Trait to serialize slices of generic items (vectors) and slices of Vecs of generic items (matrices). Turns them all into printable strings.