rustbox / esp32c3-vgaterm

VGA Driver and Serial Terminal crates, with embedded applications in mind
MIT License
1 stars 0 forks source link

alternative to String for mostly single-char, sometimes multi-char terminal output? #25

Open sethp opened 1 year ago

sethp commented 1 year ago
pub fn key_char(&mut self, pressed: &PressedSet) -> Result<String, Error> {
...
}

String is kind of a lot, there. Maybe we use Cow? What do we even want?