1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#[derive(Debug)]
pub enum Error {
    MissingBytes(usize),
    Todo,
}

pub type Result<T> = core::result::Result<T, Error>;

//#[cfg(not(feature = "no_std"))]
//impl From<std::io::Error> for Error {
//    fn from(_: core::io::Error) -> Self {
//        todo!()
//    }
//}

impl From<()> for Error {
    fn from(_: ()) -> Self {
        Error::Todo
    }
}

impl core::fmt::Display for Error {
    fn fmt(&self, _: &mut core::fmt::Formatter<'_>) -> core::result::Result<(), core::fmt::Error> {
        Ok(())
    }
}