We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc637c commit 5095d29Copy full SHA for 5095d29
src/hostcalls.rs
@@ -1030,6 +1030,9 @@ pub fn call_foreign_function(
1030
}
1031
1032
Status::NotFound => Err(Status::NotFound),
1033
+ Status::BadArgument => Err(Status::BadArgument),
1034
+ Status::SerializationFailure => Err(Status::SerializationFailure),
1035
+ Status::InternalFailure => Err(Status::InternalFailure),
1036
status => panic!("unexpected status: {}", status as u32),
1037
1038
0 commit comments