Labd README
# 600086-Lab-D ## Ownership limitations In the lecture and Lab C we looked at Rust class called `SharedData`. This class is used for sharing of data across two or more threads pub struct SharedData { value: u32 impl SharedData { pub fn new() -> SharedData { SharedData { pub fn update(&mut self) { let local_value […]