pub trait Typed { // Required method fn get_type(&self) -> Option<String>; }
An interface which is implemented by anything that has a type.
Get the type of this object as a string.