AI-powered
podcast player
Listen to all your favourite podcasts with AI-powered features
RC and ARC Template Functions in Rust
When writing in rust you have to dig a little bit deeper because rust doesn't have a runtime. Different processes and threads have access to the same data if you have an in memory storage for example. You need to make sure that just one active function or process is able to write to this like memory space. The extra mens like the pointer or I like the counter can be dropped when no more functions are using it.