As answered on the Rust-Lang Forum:
kuchikiki::NodeRef
can't be shared between threads because it is!Send
as it stores anRc
(not threadsafe reference counted pointer type) internally. To fix this problem, avoid keeping aNodeRef
across.await
points.