Expand description
Frequently-used types that are available on all platforms
We need to reexport the core types so this works with rust-dep-of-std
.
Modulesยง
- fmt ๐Utilities for formatting and printing strings.
- hash ๐Generic hashing support.
- iter ๐Composable external iteration.
- mem ๐Basic functions for dealing with memory.
Enumsยง
- Option ๐The
Option
type. See the module level documentation for more. - c_void ๐Equivalent to Cโs
void
type when used as a pointer.
Traitsยง
- Clone ๐A common trait for the ability to explicitly duplicate an object.
- Copy ๐Types whose values can be duplicated simply by copying bits.
- Send ๐Types that can be transferred across thread boundaries.
- Sync ๐Types for which it is safe to share references between threads.