As answered on the Rust-Lang Forum:
kuchikiki::NodeRefcan't be shared between threads because it is!Sendas it stores anRc(not threadsafe reference counted pointer type) internally. To fix this problem, avoid keeping aNodeRefacross.awaitpoints.