mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-29 12:23:22 +00:00
14 lines
282 B
Rust
14 lines
282 B
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
/// 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,
|
|
Overflow,
|
|
}
|