test: better, now test fails beside compile ones

This commit is contained in:
same mf who else 2026-02-20 14:36:07 +02:00
parent 2a7e981b9c
commit 5ceceae523
3 changed files with 34 additions and 30 deletions

View file

@ -4,7 +4,8 @@ use crate::*;
//use std::sync::{Arc, RwLock};
struct TestComponent(String);
impl Draw<TuiOut> for TestComponent {
fn draw (&self, _to: &mut TuiOut) {}
fn draw (&self, _to: &mut TuiOut) {
}
}
impl Handle<TuiIn> for TestComponent {
fn handle (&mut self, _from: &TuiIn) -> Perhaps<bool> {