### What it does Suggests using the helper shortcut method, which is shorter. https://doc.rust-lang.org/stable/std/io/trait.Seek.html#method.rewind ### Lint Name _No response_ ### Category _No response_ ### Advantage _No response_ ### Drawbacks _No response_ ### Example ```rust fn foo<T: io::Seek>(t: T) { t.seek(io::SeekFrom::Start(0)); } ``` Could be written as: ```rust fn foo<T: io::Seek>(t: T) { t.rewind(); } ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"dorublanzeanu"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->