Expand description
The prelude.
Re-exports§
pub use crate::mm::Paddr;
pub use crate::mm::UntypedMem;
pub use crate::mm::Vaddr;
pub use crate::panic::abort;
Macros§
Structs§
- Arc 🔒
- A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
- Box 🔒
- A pointer type that uniquely owns a heap allocation of type
T
. - Vec 🔒
- A contiguous growable array type, written as
Vec<T>
, short for ‘vector’.