Closed

Description
Source: https://docs.rs/crossbeam/0.7.1/crossbeam/thread/struct.Scope.html
Generated by rustdoc:
pub struct Scope<'env>
where
'env: 'env,
{ /* fields omitted */ }
Original code:
pub struct Scope<'env> {
handles: SharedVec<SharedOption<thread::JoinHandle<()>>>,
wait_group: WaitGroup,
_marker: PhantomData<&'env mut &'env ()>,
}
Rustdoc has somehow inferred the 'env: 'env
bound, which is a tautology.