You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(How) do we want to propagate internal Rust errors to C? Our current best guess is to have structs represent a result, which contains an error code and the result. Something like
structObservableResult {
interror; // 0 if no error, otherwise an error enumSparseObservable*result;
}
currently the code will just panic.
The text was updated successfully, but these errors were encountered:
(How) do we want to propagate internal Rust errors to C? Our current best guess is to have structs represent a result, which contains an error code and the result. Something like
currently the code will just panic.
The text was updated successfully, but these errors were encountered: