Standard Library
Rust comes with a standard library which helps establish a set of common types
used by Rust library and programs. This way, two libraries can work together
smoothly because they both use the same String
type.
The common vocabulary types include:
-
Option
andResult
types: used for optional values and error handling. -
String
: the default string type used for owned data. -
Vec
: a standard extensible vector. -
HashMap
: a hash map type with a configurable hashing algorithm. -
Box
: an owned pointer for heap-allocated data. -
Rc
: a shared reference-counted pointer for heap-allocated data.
- In fact, Rust contains several layers of the Standard Library:
core
,alloc
andstd
. core
includes the most basic types and functions that don’t depend onlibc
, allocator or even the presence of an operating system.alloc
includes types which require a global heap allocator, such asVec
,Box
andArc
.- Embedded Rust applications often only use
core
, and sometimesalloc
.