output: more big refactors

This commit is contained in:
🪞👃🪞 2025-09-07 12:34:30 +03:00
parent 194f2f9874
commit 5e6338fad8
68 changed files with 1604 additions and 1016 deletions

View file

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