How to get URL link on X (Twitter) App
std's Mutex basically used to contain a Pin<Box<pthread_mutex_t>>, where the pinned Box was only necessary because pthread_mutex_t is not guaranteed movable. The new Mutex no longer uses pthread, and instead directly uses the futex syscall, making it smaller and more efficient.
https://twitter.com/m_ou_se/status/1460965518572195842

https://twitter.com/m_ou_se/status/1385966446254166020for details.)

![error[E0277]: `[{integer}; 3]` is not an iterator borrow th](https://pbs.twimg.com/media/EzvpdLjXEAEcNFn.jpg)
The reason we didn't add it sooner was backwards compatibility. `array.into_iter()` already compiles today, because of the way methods get resolved in Rust. This implicitly calls `(&array).into_iter()`. Adding the trait implementation would change the meaning and break code.