File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 11
11
//! is called "pinning." We would say that a value which satisfies these guarantees has been
12
12
//! "pinned," in that it has been permanently (until the end of its lifespan) attached to its
13
13
//! location in memory, as though pinned to a pinboard. Pinning a value is an incredibly useful
14
- //! building block for [unsafe] code to be able to reason about whether a raw pointer to the
14
+ //! building block for [` unsafe` ] code to be able to reason about whether a raw pointer to the
15
15
//! pinned value is still valid. [As we'll see later][drop-guarantee], this is necessarily from the
16
16
//! time the value is first pinned until the end of its lifespan. This concept of "pinning" is
17
17
//! necessary to implement safe interfaces on top of things like self-referential types and
You can’t perform that action at this time.
0 commit comments