Struct toml::ParserError
[−]
[src]
pub struct ParserError {
pub lo: usize,
pub hi: usize,
pub desc: String,
}A structure representing a parse error.
The data in this structure can be used to trace back to the original cause of the error in order to provide diagnostics about parse errors.
Fields
lo | The low byte at which this error is pointing at. |
hi | One byte beyond the last character at which this error is pointing at. |
desc | A human-readable description explaining what the error is. |