pub enum Error {
Io(Error),
Read(ReadError),
Compression(CompressionUnsupported),
Parse(ParseError),
}Expand description
Super error type for all runefs errors.
Variants
Io(Error)
Wrapper for the std::io::Error type.
Read(ReadError)
Compression(CompressionUnsupported)
Parse(ParseError)
Clarification error for failed parsers.
Trait Implementations
Performs the conversion.
Performs the conversion.