Can C code call Rust code?
Not directly. We expect to develop a mechanism for C code to transmit messages into Rust channels, but a direct call would not make much sense since all Rust code runs in a task — which may deschedule and switch to another task mid-call — whereas C code does not, and will not behave well if “switched away” from.