Switch to fully composition based Transducers.

This commit is contained in:
Zachary Sunforge
2023-06-17 10:41:20 -07:00
parent ad66d8e030
commit 60e0edf7d2
6 changed files with 116 additions and 105 deletions

View File

@ -3,5 +3,5 @@ pub trait Output {
//TODO: return result
//TODO: Make maybe async
fn set(&mut self, setting: Self::Value);
fn output(&mut self, setting: Self::Value);
}