mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-29 04:13:24 +00:00
11 lines
231 B
Rust
11 lines
231 B
Rust
/// The error type which is returned from the APIs of this crate.
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
|
pub enum Error {
|
|
InvalidArgs,
|
|
NoMemory,
|
|
PageFault,
|
|
AccessDenied,
|
|
IoError,
|
|
NotEnoughResources,
|
|
}
|