Type Alias Scope Stack Handle
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub type ScopeStackHandle = Arc<RwLock<ScopeStack>>;
Shared handle type for the runtime scope stack.
The runtime stores the active ScopeStack behind an Arc and RwLock so bindings can propagate it across execution contexts while still allowing concurrent readers.