You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change added for byte in bytes { which fails with in Rust < 1.53.
Error message
error[E0277]: `[u8; 10]` is not an iterator
--> /edited-out/.cargo/registry/src/github.com-1ecc6299db9ec823/native-tls-0.2.10/src/imp/security_framework.rs:197:17
|
197 | for byte in bytes {
| ^^^^^ borrow the array with `&` or call `.iter()` on it to iterate over it
|
= help: the trait `Iterator` is not implemented for `[u8; 10]`
= note: arrays are not iterators, but slices like the following are: `&[1, 2, 3]`
= note: required because of the requirements on the impl of `IntoIterator` for `[u8; 10]`
= note: required by `into_iter`
Borrowing the array (for byte in &bytes {) would allow this crate to keep working in older Rust versions.
IMO, it's ok if you decide not to work with older Rust versions, but I did want to let you know.
The text was updated successfully, but these errors were encountered:
This change added
for byte in bytes {
which fails with in Rust < 1.53.Error message
Borrowing the array (
for byte in &bytes {
) would allow this crate to keep working in older Rust versions.IMO, it's ok if you decide not to work with older Rust versions, but I did want to let you know.
The text was updated successfully, but these errors were encountered: