1 2 3 4 5 6 7 8 9 10 11
use snafu::Snafu; #[derive(Debug, Clone,Snafu, Serialize)] #[repr(C)] pub enum Error { EncodeError, EncodeWriteError, DecodeVaru64Error, DecodeError, }
1 2 3 4 5 6 7 8 9 10 11
use snafu::Snafu; #[derive(Debug, Clone,Snafu, Serialize)] #[repr(C)] pub enum Error { EncodeError, EncodeWriteError, DecodeVaru64Error, DecodeError, }