propparse 0.2.5

A library to parse .properties files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::types::Span;

#[derive(Debug)]
pub enum LibError {
    LexError(String, Span),
    ParserError(String),
    IOError(std::io::Error),
}

impl From<std::io::Error> for LibError {
    fn from(x: std::io::Error) -> Self {
        LibError::IOError(x)
    }
}