pub type BloomRef = Arc<RwLock<Bloom>>;Expand description
Shared handle to the local bloom. Readers snapshot via *b.read();
writers (attach_protocol, swarm joins, …) update in place. Cheap
to clone (Arc) and lock-free for short reads (parking_lot RwLock).
Aliased Type§
pub struct BloomRef { /* private fields */ }