This repository has been archived on 2022-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
ext2-rs/src/error.rs

28 lines
546 B
Rust
Raw Normal View History

2018-03-19 07:35:00 -05:00
#[cfg(any(test, not(feature = "no_std")))]
use std::io;
2018-03-18 12:11:58 -05:00
/// The set of all possible errors
2018-03-19 07:35:00 -05:00
#[derive(Debug)]
pub enum Error {
BadMagic(u16),
OutOfBounds(usize),
BadBlockGroupCount(u32, u32),
2018-03-19 07:35:00 -05:00
#[cfg(any(test, not(feature = "no_std")))]
Io(io::Error),
2018-03-18 12:11:58 -05:00
}
impl From<Infallible> for Error {
fn from(_: Infallible) -> Error {
unreachable!()
}
}
2018-03-19 07:35:00 -05:00
#[cfg(any(test, not(feature = "no_std")))]
impl From<io::Error> for Error {
fn from(err: io::Error) -> Error {
Error::Io(err)
}
}
pub enum Infallible {}