[Teton] Move console/shell to rust. WIP

This commit is contained in:
Drew Galbraith 2024-08-12 11:35:54 -07:00
parent 76f8795a46
commit 18e512cf1f
17 changed files with 409 additions and 5 deletions

View file

@ -79,7 +79,7 @@ impl YunqMessage for Empty {
where
Self: Sized,
{
todo!()
Ok(Self {})
}
fn serialize<const N: usize>(
@ -88,6 +88,6 @@ impl YunqMessage for Empty {
_offset: usize,
_caps: &mut Vec<z_cap_t>,
) -> Result<usize, ZError> {
todo!()
Ok(0)
}
}