diff options
-rw-r--r-- | src/de.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1063,6 +1063,11 @@ impl<'a> Deserializer<'a> { } impl Error { + /// Produces a (line, column) pair of the position of the error if available + 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 { |