mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
145 lines
5.9 KiB
Text
145 lines
5.9 KiB
Text
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:8:62
|
|
|
|
|
LL | async fn private_future(rc: Rc<[u8]>, cell: &Cell<usize>) -> bool {
|
|
| ^^^^ future returned by `private_future` is not `Send`
|
|
|
|
|
= note: `-D clippy::future-not-send` implied by `-D warnings`
|
|
note: future is not `Send` as this value is used across an await
|
|
--> $DIR/future_not_send.rs:9:5
|
|
|
|
|
LL | async fn private_future(rc: Rc<[u8]>, cell: &Cell<usize>) -> bool {
|
|
| -- has type `std::rc::Rc<[u8]>` which is not `Send`
|
|
LL | async { true }.await
|
|
| ^^^^^^^^^^^^^^^^^^^^ await occurs here, with `rc` maybe used later
|
|
LL | }
|
|
| - `rc` is later dropped here
|
|
= note: `std::rc::Rc<[u8]>` doesn't implement `std::marker::Send`
|
|
note: future is not `Send` as this value is used across an await
|
|
--> $DIR/future_not_send.rs:9:5
|
|
|
|
|
LL | async fn private_future(rc: Rc<[u8]>, cell: &Cell<usize>) -> bool {
|
|
| ---- has type `&std::cell::Cell<usize>` which is not `Send`
|
|
LL | async { true }.await
|
|
| ^^^^^^^^^^^^^^^^^^^^ await occurs here, with `cell` maybe used later
|
|
LL | }
|
|
| - `cell` is later dropped here
|
|
= note: `std::cell::Cell<usize>` doesn't implement `std::marker::Sync`
|
|
|
|
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:12:42
|
|
|
|
|
LL | pub async fn public_future(rc: Rc<[u8]>) {
|
|
| ^ future returned by `public_future` is not `Send`
|
|
|
|
|
note: future is not `Send` as this value is used across an await
|
|
--> $DIR/future_not_send.rs:13:5
|
|
|
|
|
LL | pub async fn public_future(rc: Rc<[u8]>) {
|
|
| -- has type `std::rc::Rc<[u8]>` which is not `Send`
|
|
LL | async { true }.await;
|
|
| ^^^^^^^^^^^^^^^^^^^^ await occurs here, with `rc` maybe used later
|
|
LL | }
|
|
| - `rc` is later dropped here
|
|
= note: `std::rc::Rc<[u8]>` doesn't implement `std::marker::Send`
|
|
|
|
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:20:63
|
|
|
|
|
LL | async fn private_future2(rc: Rc<[u8]>, cell: &Cell<usize>) -> bool {
|
|
| ^^^^ future returned by `private_future2` is not `Send`
|
|
|
|
|
note: captured value is not `Send`
|
|
--> $DIR/future_not_send.rs:20:26
|
|
|
|
|
LL | async fn private_future2(rc: Rc<[u8]>, cell: &Cell<usize>) -> bool {
|
|
| ^^ has type `std::rc::Rc<[u8]>` which is not `Send`
|
|
= note: `std::rc::Rc<[u8]>` doesn't implement `std::marker::Send`
|
|
note: captured value is not `Send`
|
|
--> $DIR/future_not_send.rs:20:40
|
|
|
|
|
LL | async fn private_future2(rc: Rc<[u8]>, cell: &Cell<usize>) -> bool {
|
|
| ^^^^ has type `&std::cell::Cell<usize>` which is not `Send`
|
|
= note: `std::cell::Cell<usize>` doesn't implement `std::marker::Sync`
|
|
|
|
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:24:43
|
|
|
|
|
LL | pub async fn public_future2(rc: Rc<[u8]>) {}
|
|
| ^ future returned by `public_future2` is not `Send`
|
|
|
|
|
note: captured value is not `Send`
|
|
--> $DIR/future_not_send.rs:24:29
|
|
|
|
|
LL | pub async fn public_future2(rc: Rc<[u8]>) {}
|
|
| ^^ has type `std::rc::Rc<[u8]>` which is not `Send`
|
|
= note: `std::rc::Rc<[u8]>` doesn't implement `std::marker::Send`
|
|
|
|
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:35:39
|
|
|
|
|
LL | async fn private_future(&self) -> usize {
|
|
| ^^^^^ future returned by `private_future` is not `Send`
|
|
|
|
|
note: future is not `Send` as this value is used across an await
|
|
--> $DIR/future_not_send.rs:36:9
|
|
|
|
|
LL | async fn private_future(&self) -> usize {
|
|
| ----- has type `&Dummy` which is not `Send`
|
|
LL | async { true }.await;
|
|
| ^^^^^^^^^^^^^^^^^^^^ await occurs here, with `&self` maybe used later
|
|
LL | self.rc.len()
|
|
LL | }
|
|
| - `&self` is later dropped here
|
|
= note: `std::rc::Rc<[u8]>` doesn't implement `std::marker::Sync`
|
|
|
|
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:40:39
|
|
|
|
|
LL | pub async fn public_future(&self) {
|
|
| ^ future returned by `public_future` is not `Send`
|
|
|
|
|
note: future is not `Send` as this value is used across an await
|
|
--> $DIR/future_not_send.rs:41:9
|
|
|
|
|
LL | pub async fn public_future(&self) {
|
|
| ----- has type `&Dummy` which is not `Send`
|
|
LL | self.private_future().await;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ await occurs here, with `&self` maybe used later
|
|
LL | }
|
|
| - `&self` is later dropped here
|
|
= note: `std::rc::Rc<[u8]>` doesn't implement `std::marker::Sync`
|
|
|
|
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:50:37
|
|
|
|
|
LL | async fn generic_future<T>(t: T) -> T
|
|
| ^ future returned by `generic_future` is not `Send`
|
|
|
|
|
note: future is not `Send` as this value is used across an await
|
|
--> $DIR/future_not_send.rs:55:5
|
|
|
|
|
LL | let rt = &t;
|
|
| -- has type `&T` which is not `Send`
|
|
LL | async { true }.await;
|
|
| ^^^^^^^^^^^^^^^^^^^^ await occurs here, with `rt` maybe used later
|
|
LL | t
|
|
LL | }
|
|
| - `rt` is later dropped here
|
|
= note: `T` doesn't implement `std::marker::Sync`
|
|
|
|
error: future cannot be sent between threads safely
|
|
--> $DIR/future_not_send.rs:66:34
|
|
|
|
|
LL | async fn unclear_future<T>(t: T) {}
|
|
| ^ future returned by `unclear_future` is not `Send`
|
|
|
|
|
note: captured value is not `Send`
|
|
--> $DIR/future_not_send.rs:66:28
|
|
|
|
|
LL | async fn unclear_future<T>(t: T) {}
|
|
| ^ has type `T` which is not `Send`
|
|
= note: `T` doesn't implement `std::marker::Send`
|
|
|
|
error: aborting due to 8 previous errors
|
|
|