pub trait Renderer: Send + Sync {
type Output;
type Error;
// Required methods
fn id(&self) -> &str;
fn render(&self, items: &[ContextItem]) -> Result<Self::Output, Self::Error>;
}Expand description
Converts selected context into an explicit provider representation.