### What it does Suggests using the helper shortcut method, which is shorter. https://doc.rust-lang.org/stable/std/time/struct.Instant.html#method.elapsed ### Lint Name _No response_ ### Category _No response_ ### Advantage _No response_ ### Drawbacks _No response_ ### Example ```rust let prev_instant = Instant::now(); // ... let duration = Instant::now() - prev_instant(); ``` Could be written as: ```rust let prev_instant = Instant::now(); // ... let duration = prev_instant.elapsed(); ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"Alastair-smith2"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->