cannot be sent between threads safely
--> src\lib.rs:37:22
|
37 | let future = tokio::spawn(async move {
| ^^^^^^^^^^^^ future is not `Send`
|
::: C:\Users\DuckerMan\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-0.2.21\src\task\spawn.rs:127:21
|
127 | T: Future + Send + 'static,
| ---- required by this bound in `tokio::task::spawn::spawn`
|
= help: within `tendril::tendril::NonAtomic`, the trait `std::marker::Sync` is not implemented for `std::cell::Cell<usize>`
note: future is not `Send` as this value is used across an await
--> src\lib.rs:65:17
|
38 | let proxy_data = Html::parse_fragment(&element_html);
| ---------- has type `scraper::html::Html`
...
65 | cloned.write().await.push(format!("{}:{}", decoded_ip, port).parse().unwrap());
| ^^^^^^^^^^^^^^^^^^^^ await occurs here, with `proxy_data` maybe used later
66 | }
67 | });
| - `proxy_data` is later dropped here .
Что я не так то сделал?
тебе ж написал раст, твоя футура не реализует Send. Где-то внутрях юзается tendril::tendril::NonAtomic с std::cell::Cell<usize> который нельзя передавать между потоками
Обсуждают сегодня