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 85ed287 commit 2a25b53Copy full SHA for 2a25b53
rayon-core/src/scope/mod.rs
@@ -56,6 +56,7 @@ struct ScopeBase<'scope> {
56
/// all of which outlive `'scope`. They're not actually required to be
57
/// `Sync`, but it's still safe to let the `Scope` implement `Sync` because
58
/// the closures are only *moved* across threads to be executed.
59
+ #[allow(clippy::type_complexity)]
60
marker: PhantomData<Box<dyn FnOnce(&Scope<'scope>) + Send + Sync + 'scope>>,
61
62
/// The TLV at the scope's creation. Used to set the TLV for spawned jobs.
0 commit comments