Module prelude

Source
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§

print
Prints to the console.
println
Prints to the console with a newline.

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’.

Type Aliases§

Result
A specialized Result type for this crate.