mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 01:13:23 +00:00
11 lines
252 B
Rust
11 lines
252 B
Rust
//! The prelude.
|
|
|
|
pub type Result<T> = core::result::Result<T, crate::error::Error>;
|
|
|
|
pub(crate) use alloc::boxed::Box;
|
|
pub(crate) use alloc::sync::Arc;
|
|
pub(crate) use alloc::vec::Vec;
|
|
pub(crate) use core::any::Any;
|
|
|
|
pub use crate::vm::{Paddr, Vaddr};
|