Traits

This trait marks a type as being safe to mutate (interior mutability) across threads (parallel safe) and tasks (async safe). These are just convenience static methods. You can simply use the read() and write() methods directly on the Arc reference.

This trait marks a type as being safe to share across threads (parallel safe) and tasks (async safe).