output: refactor Content and Render traits

This commit is contained in:
🪞👃🪞 2025-09-06 08:46:52 +03:00
parent 74b3af2212
commit 1c21a85f27
24 changed files with 346 additions and 613 deletions

View file

@ -1,5 +1,13 @@
use crate::*;
render!(TuiOut: |self: u64, _to|todo!());
impl Render<TuiOut> for u64 {
fn render (&self, _to: &mut TuiOut) {
todo!()
}
}
render!(TuiOut: |self: f64, _to|todo!());
impl Render<TuiOut> for f64 {
fn render (&self, _to: &mut TuiOut) {
todo!()
}
}