mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2026-02-01 03:16:40 +01:00
output: refactor Content and Render traits
This commit is contained in:
parent
74b3af2212
commit
1c21a85f27
24 changed files with 346 additions and 613 deletions
|
|
@ -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!()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue