pub trait View { // Required method fn stringify(&self) -> String; }
Trait used to expose custom display methods.
Returns a stringified version of self.
self