1 2 3 4 5 6 7 8 9 10 11 12
use std::io; use std::string; #[derive(Debug, Error)] pub enum Error { Io(io::Error), Utf8(string::FromUtf8Error), InvalidFormat, UnknownVersion, InvalidPrecision, NotSupported, }