pub trait DisplayableWithContext { // Required method fn display(&self, context: &Context) -> String; }
Trait for things that may be rendered as a String provided that a Context is available.
String
Context