pub enum Error {
Io(Error),
NameHash(NameHashMismatch),
Parse(Err<()>),
Validate(ValidateError),
RuneFs(RuneFsError),
}Expand description
Super error type for all cache errors.
Variants
Io(Error)
Wrapper for the std::io::Error type.
NameHash(NameHashMismatch)
Parse(Err<()>)
Validate(ValidateError)
RuneFs(RuneFsError)
Trait Implementations
Performs the conversion.
Performs the conversion.