24 lines
1.2 KiB
Plaintext
24 lines
1.2 KiB
Plaintext
|
error[E0271]: type mismatch resolving `<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:16:39: 19:6 found_e:_]> as std::iter::Iterator>::Item == &_`
|
||
|
--> $DIR/issue-31173.rs:20:10
|
||
|
|
|
||
|
LL | .cloned()
|
||
|
| ^^^^^^ expected u8, found reference
|
||
|
|
|
||
|
= note: expected type `u8`
|
||
|
found type `&_`
|
||
|
|
||
|
error[E0599]: no method named `collect` found for type `std::iter::Cloned<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:16:39: 19:6 found_e:_]>>` in the current scope
|
||
|
--> $DIR/issue-31173.rs:24:10
|
||
|
|
|
||
|
LL | .collect(); //~ ERROR no method named `collect`
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
= note: the method `collect` exists but the following trait bounds were not satisfied:
|
||
|
`std::iter::Cloned<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:16:39: 19:6 found_e:_]>> : std::iter::Iterator`
|
||
|
`&mut std::iter::Cloned<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:16:39: 19:6 found_e:_]>> : std::iter::Iterator`
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|
||
|
Some errors occurred: E0271, E0599.
|
||
|
For more information about an error, try `rustc --explain E0271`.
|