File tree Expand file tree Collapse file tree 2 files changed +10
-13
lines changed
branches/snap-stage3/src/doc Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 7be8f0af0393dcdb077c2f6b1653836fd3fba235
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 4c196c27c4ff8002e034211720530b7c0ef59a30
4
+ refs/heads/snap-stage3: ea1b6376540ed559ed5d95567c613511390bc578
5
5
refs/heads/try: 502e4c045236682e9728539dc0d2b3d0b237f55c
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -733,18 +733,15 @@ This part is coming soon.
733
733
734
734
Here's a quick rundown of Rust's pointer types:
735
735
736
- | Type | Name | Summary |
737
- | --------------| ---------------------| -------------------------------------------|
738
- | ` &T ` | Reference | Allows one or more references to read ` T ` |
739
- | ` &mut T ` | Mutable Reference | Allows a single reference to |
740
- | | | read and write ` T ` |
741
- | ` Box<T> ` | Box | Heap allocated ` T ` with a single owner |
742
- | | | that may read and write ` T ` . |
743
- | ` Rc<T> ` | "arr cee" pointer | Heap allocated ` T ` with many readers |
744
- | ` Arc<T> ` | Arc pointer | Same as above, but safe sharing across |
745
- | | | threads |
746
- | ` *const T ` | Raw pointer | Unsafe read access to ` T ` |
747
- | ` *mut T ` | Mutable raw pointer | Unsafe read and write access to ` T ` |
736
+ | Type | Name | Summary |
737
+ | --------------| ---------------------| ---------------------------------------------------------------------|
738
+ | ` &T ` | Reference | Allows one or more references to read ` T ` |
739
+ | ` &mut T ` | Mutable Reference | Allows a single reference to read and write ` T ` |
740
+ | ` Box<T> ` | Box | Heap allocated ` T ` with a single owner that may read and write ` T ` . |
741
+ | ` Rc<T> ` | "arr cee" pointer | Heap allocated ` T ` with many readers |
742
+ | ` Arc<T> ` | Arc pointer | Same as above, but safe sharing across threads |
743
+ | ` *const T ` | Raw pointer | Unsafe read access to ` T ` |
744
+ | ` *mut T ` | Mutable raw pointer | Unsafe read and write access to ` T ` |
748
745
749
746
# Related resources
750
747
You can’t perform that action at this time.
0 commit comments