We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66509f2 commit 567a570Copy full SHA for 567a570
src/std.md
@@ -19,3 +19,12 @@ The common vocabulary types include:
19
* [`Box`](std/box.md): an owned pointer for heap-allocated data.
20
21
* [`Rc`](std/rc.md): a shared reference-counted pointer for heap-allocated data.
22
+
23
+<details>
24
25
+ * In fact, Rust contains two layers of the Standard Library: `core` and `std`.
26
+ * `core` includes the most basic types and functions that don't depend on `libc`, allocator or
27
+ even a presense of the operating system.
28
+ * Embedded Rust applications often only use `core`.
29
30
+</details>
0 commit comments