pub trait Token: Eq + PartialEq { // Required method fn display<'a>(&'a self, config: &'a Config) -> impl Display + 'a; }
Tokens that are streamable.
Returns a displayable version of the token.