docs: Don't mention unsafe pointers

This commit is contained in:
Brian Anderson 2012-09-15 19:03:07 -07:00
parent 5e5b107306
commit 78525299d5

View File

@ -1010,10 +1010,6 @@ uniquely-owned boxes allocated on the exchange heap, and `&T`, for
borrowed pointers, which may point to any memory, and whose lifetimes
are governed by the call stack.
Rust also has an unsafe pointer, written `*T`, which is a completely
unchecked pointer type only used in unsafe code (and thus, in typical
Rust code, very rarely).
All pointer types can be dereferenced with the `*` unary operator.
## Shared boxes