aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/de.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/de.rs b/src/de.rs
index 223d492..bd73649 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -1063,6 +1063,13 @@ impl<'a> Deserializer<'a> {
}
impl Error {
+ /// Produces a (line, column) pair of the position of the error if available
+ ///
+ /// All indexes are 0-based.
+ pub fn line_col(&self) -> Option<(usize, usize)> {
+ self.inner.line.map(|line| (line, self.inner.col))
+ }
+
fn from_kind(kind: ErrorKind) -> Error {
Error {
inner: Box::new(ErrorInner {