1 parent a70e27e commit 7818580Copy full SHA for 7818580
1 file changed
src/pool/mod.rs
@@ -1,3 +1,7 @@
1
+// The getters that `#[wasm_bindgen(getter_with_clone)]` generates for
2
+// `WorkerPoolOptions` clone every field, including the `Copy` ones.
3
+#![allow(clippy::clone_on_copy)]
4
+
5
use std::{borrow::Borrow, cell::RefCell, rc::Rc};
6
7
use futures::future::join_all;
0 commit comments