We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7333eb commit a14f459Copy full SHA for a14f459
rayon-core/src/scope/mod.rs
@@ -55,6 +55,7 @@ struct ScopeBase<'scope> {
55
/// all of which outlive `'scope`. They're not actually required to be
56
/// `Sync`, but it's still safe to let the `Scope` implement `Sync` because
57
/// the closures are only *moved* across threads to be executed.
58
+ #[allow(clippy::type_complexity)]
59
marker: PhantomData<Box<dyn FnOnce(&Scope<'scope>) + Send + Sync + 'scope>>,
60
}
61
0 commit comments