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
If C calls into a Rust function that panics it's Undefined Behaviour if it's not caught before the FFI boundary. You need to spawn a thread (stable) or catch_panic (unstable) if you can panic.
Similarly if e.g. C++ unwinds into Rust this is also Undefined Behaviour, though this is perhaps out of scope as a "Rust" problem.