pub trait ProvideElement { type Element: Display; // Required method fn last(&self) -> &Self::Element; }
This is an utily trait
Element associate with a Context. This is often an enum of different Atom.
return the last Element added to a Context