tengri/src/draw/view.rs
facile pop culture reference 145047b7ff more space/ and draw/ modules
- 26 errors and 16 doctest fails
- getting there, perpetually
2026-04-24 02:06:04 +03:00

8 lines
169 B
Rust

use super::*;
/// Emit a [Draw]able.
///
/// Speculative. How to avoid conflicts with [Draw] proper?
pub trait View<T: Screen> {
fn view (&self) -> impl Draw<T>;
}