1 2 3 4 5 6 7
// Rendering backend interface (future implementation) pub trait Renderer { type Error; fn render(&self) -> Result<(), Self::Error>; }