some progress on marshalling args

This commit is contained in:
Pat Hickey
2020-01-23 17:55:59 -08:00
parent b4f21752b0
commit b6d342ccb5
4 changed files with 89 additions and 23 deletions

View File

@@ -12,6 +12,10 @@ pub mod test {
println!("BAR: {} {}", an_int, an_float);
Ok(())
}
fn baz(&mut self, excuse: types::Excuse) -> Result<(), types::Errno> {
println!("BAZ: {:?}", excuse);
Ok(())
}
}
// Errno is used as a first return value in the functions above, therefore