Skip to content
Better HN
Top
New
Best
Ask
Show
Jobs
Search
⌘K
undefined | Better HN
story
0 points
oconnor663
6y ago
0 comments
Share
I think `#[may_dangle]` is an exception to this, and the standard library puts it on many (most?) container types.
0 comments
default
newest
oldest
Rusky
6y ago
It is not an exception; #[may_dangle] does not change the time drop runs. All it does is promise that drop will not access borrowed data, allowing
that data
to die before drop:
https://doc.rust-lang.org/nightly/nomicon/dropck.html
j
/
k
navigate · click thread line to collapse