mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-21 08:26:30 +00:00
28 lines
588 B
Rust
28 lines
588 B
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
pub type Result<T> = core::result::Result<T, self::Error>;
|
|
|
|
/// Errors of CPIO decoder.
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
|
pub enum Error {
|
|
MagicError,
|
|
Utf8Error,
|
|
ParseIntError,
|
|
FileTypeError,
|
|
FileNameError,
|
|
BufferShortError,
|
|
IoError,
|
|
}
|
|
|
|
impl From<core2::io::Error> for Error {
|
|
#[inline]
|
|
fn from(err: core2::io::Error) -> Self {
|
|
use core2::io::ErrorKind;
|
|
|
|
match err.kind() {
|
|
ErrorKind::UnexpectedEof => Self::BufferShortError,
|
|
_ => Self::IoError,
|
|
}
|
|
}
|
|
}
|