I think Clippy should suggest to replace integer rotations like: ```rust pub fn rol24a(x: u32) -> u32 { (x >> 8) | (x << 24) } ``` With calls to rotation methods `rotate_right` or `rotate_left`: ```rust pub fn rol24b(x: u32) -> u32 { x.rotate_right(8) } ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"frp"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->