Task #119455 - fixed.err
back to task #119455download
Error: CLIPPY_WARNING:
src/lib.rs:1559:41: warning: this `.into_iter()` call is equivalent to `.iter()` and will not consume the `slice`
# |
# 1559 | for (i, c) in issuer.as_bytes().into_iter().enumerate() {
# | ^^^^^^^^^ help: call directly: `iter`
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.95.0/index.html#into_iter_on_ref
# = note: `#[warn(clippy::into_iter_on_ref)]` on by default
Error: CLIPPY_WARNING:
src/lib.rs:1560:25: warning: casting to the same type is unnecessary (`u8` -> `u8`)
# |
# 1560 | buffer[i] = *c as u8;
# | ^^^^^^^^ help: try: `*c`
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.95.0/index.html#unnecessary_cast