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