2022-04-07 17:39:59 +00:00
|
|
|
error: called `.bytes().nth()` on a `String`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/bytes_nth.rs:6:13
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
2022-03-26 15:19:47 +00:00
|
|
|
LL | let _ = s.bytes().nth(3);
|
2023-02-26 00:08:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `s.as_bytes().get(3).copied()`
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::bytes-nth` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::bytes_nth)]`
|
2021-02-11 14:04:38 +00:00
|
|
|
|
2023-02-26 00:08:29 +00:00
|
|
|
error: called `.bytes().nth().unwrap()` on a `String`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/bytes_nth.rs:7:14
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
2023-02-26 00:08:29 +00:00
|
|
|
LL | let _ = &s.bytes().nth(3).unwrap();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `s.as_bytes()[3]`
|
2021-02-11 14:04:38 +00:00
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
error: called `.bytes().nth()` on a `str`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/bytes_nth.rs:8:13
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
2022-03-26 15:19:47 +00:00
|
|
|
LL | let _ = s[..].bytes().nth(3);
|
2023-02-26 00:08:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try: `s[..].as_bytes().get(3).copied()`
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|