1use crate::context::*; 2 3///Trait for things that may be rendered as a [`String`] provided 4///that a [`Context`] is available. 5pub trait DisplayableWithContext { 6 fn display(&self, context : &Context) -> String; 7}