1 parent c6aa623 commit e95daaeCopy full SHA for e95daae
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