ruviz 0.3.1

High-performance 2D plotting library for Rust
Documentation
1
2
3
4
5
6
7
// Rendering backend interface (future implementation)

pub trait Renderer {
    type Error;

    fn render(&self) -> Result<(), Self::Error>;
}