Enum json_io::Error
[−]
[src]
pub enum Error {
IO(Error),
JsonParserError(ParserError),
JsonDecoderError(DecoderError),
JsonEncoderError(EncoderError),
}Represents the different kinds of errors returned by Librar.
Variants
IO(Error)Some std::io Error.
JsonParserError(ParserError)An error returned by the JSON parser.
JsonDecoderError(DecoderError)An error returned by the JSON decoder.
JsonEncoderError(EncoderError)An error returned by the JSON encoder.