mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-04-29 14:00:14 +02:00
9 lines
174 B
Rust
9 lines
174 B
Rust
use crate::*;
|
|
|
|
pub struct Meters<'a>(pub &'a[f32]);
|
|
|
|
render!(<Tui>|self: Meters<'a>|col!([
|
|
&format!("L/{:>+9.3}", self.0[0]),
|
|
&format!("R/{:>+9.3}", self.0[1]),
|
|
]));
|