> no, `const` means you can't modify the data through that `const` variable (excepting shenanigans), not that it's immutable.
But that's the whole point, isn't it? I mean the selling point of these lifetime annotations is to allow developers to specify that data within a thread cannot be modified by the code running in that thread.
Isn't that exactly what const does?