We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
non_send_fields_in_send_ty
1 parent 334eb69 commit 8253ccfCopy full SHA for 8253ccf
2 files changed
drivers/android/context.rs
@@ -21,6 +21,7 @@ pub(crate) struct Context {
21
manager: Mutex<Manager>,
22
}
23
24
+#[allow(clippy::non_send_fields_in_send_ty)]
25
unsafe impl Send for Context {}
26
unsafe impl Sync for Context {}
27
drivers/android/process.rs
@@ -260,6 +260,7 @@ pub(crate) struct Process {
260
node_refs: Mutex<ProcessNodeRefs>,
261
262
263
264
unsafe impl Send for Process {}
265
unsafe impl Sync for Process {}
266
0 commit comments