Suppose I have a struct
struct MyStruct{ pub field: u8 } impl MyStruct{ pub fn do_something(&mut self, value: u8) { self.field += value;