Enum rscache::CacheError [−][src]
pub enum CacheError {
Io(Error),
Read(ReadError),
Compression(CompressionError),
Parse(ParseError),
}Expand description
Super error type for all sub cache errors
Variants
Io(Error)Wrapper for the std::io::Error type.
Tuple Fields of Io
0: ErrorRead(ReadError)Tuple Fields of Read
0: ReadErrorCompression(CompressionError)Tuple Fields of Compression
Parse(ParseError)Clarification error for failed parsers.
Tuple Fields of Parse
0: ParseErrorTrait Implementations
Performs the conversion.
Performs the conversion.