A replacement to Rust's std::sync::Arc
when std::sync::Weak
references is unneeded. Typically used to slightly decrease memory usage in memory-constrained environments.
Typical cloning and sending between threads. ```rust use arsc_rs::Arsc; use std::thread;
let a = Arsc::new(123); let b = a.clone(); thread::spawn(move || println!("{b:?}")); ```
Using as a receiver. ```rust use arsc_rs::Arsc;
struct A(i32);
impl A {
fn arsc_only(self: &Arsc
Arsc
is vulnerable to cyclic references! Use Arc
if those cases are possible.