Basically, we'd suggest the following replacements: `a = b.clone()` => `a.clone_from(&b)` `a = b.to_owned()` => `b.clone_into(&mut a)`