mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-14 16:03:17 +00:00
63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
|
error: you seem to be trying to move all elements into a new `BinaryHeap`
|
||
|
--> $DIR/drain_collect.rs:6:5
|
||
|
|
|
||
|
LL | b.drain().collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
|
||
|
note: the lint level is defined here
|
||
|
--> $DIR/drain_collect.rs:1:9
|
||
|
|
|
||
|
LL | #![deny(clippy::drain_collect)]
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `HashMap`
|
||
|
--> $DIR/drain_collect.rs:14:5
|
||
|
|
|
||
|
LL | b.drain().collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `HashSet`
|
||
|
--> $DIR/drain_collect.rs:22:5
|
||
|
|
|
||
|
LL | b.drain().collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `Vec`
|
||
|
--> $DIR/drain_collect.rs:30:5
|
||
|
|
|
||
|
LL | b.drain(..).collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `Vec`
|
||
|
--> $DIR/drain_collect.rs:38:5
|
||
|
|
|
||
|
LL | b.drain(..).collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `Vec`
|
||
|
--> $DIR/drain_collect.rs:42:5
|
||
|
|
|
||
|
LL | b.drain(0..).collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `Vec`
|
||
|
--> $DIR/drain_collect.rs:46:5
|
||
|
|
|
||
|
LL | b.drain(..b.len()).collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `Vec`
|
||
|
--> $DIR/drain_collect.rs:50:5
|
||
|
|
|
||
|
LL | b.drain(0..b.len()).collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: you seem to be trying to move all elements into a new `String`
|
||
|
--> $DIR/drain_collect.rs:58:5
|
||
|
|
|
||
|
LL | b.drain(..).collect()
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `mem::take`: `std::mem::take(&mut b)`
|
||
|
|
||
|
error: aborting due to 9 previous errors
|
||
|
|