use std::ops::AddAssign; pub struct Int(pub i32); impl AddAssign for Int { fn add_assign(&mut self, _: i32) { } }