Skip to main content Crate fuchsia_rcu Copy item path Source subtle RcuArc An RCU (Read-Copy-Update) version of Arc. RcuCell An RCU (Read-Copy-Update) version of Cell. RcuOptionArc An RCU (Read-Copy-Update) version of Option<Arc<...>>. RcuOptionCell An RCU (Read-Copy-Update) version of Cell<Option<T>>. RcuReadGuard A read guard for an object managed by the RCU state machine. RcuReadScope A scope that holds a read lock on the RCU state machine. rcu_drop Schedule the object to be dropped after all in-flight read operations have completed. rcu_run_callbacks If any callbacks have been scheduled from this thread, call rcu_synchronize. rcu_synchronize Block until all in-flight read operations have completed. When this returns, the callbacks that
are unblocked by those in-flight operations might still be running (or even not yet started) on
another thread.