A simple library for a concurrent Cell-like object containing an Arc/Weak reference.
toml
[dependencies]
arc-cell = "0.1"
```rust use arc_cell::WeakCell;
struct Thing {
self_ref: WeakCell
impl Thing {
pub fn new() -> Arc
thing.self_ref.store(&thing);
thing
}
} ```