We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 941a43d commit 688edeeCopy full SHA for 688edee
1 file changed
crates/toml/src/de.rs
@@ -70,16 +70,6 @@ impl Error {
70
pub fn span(&self) -> Option<std::ops::Range<usize>> {
71
self.inner.span()
72
}
73
-
74
- /// Produces a (line, column) pair of the position of the error if available
75
- ///
76
- /// All indexes are 0-based.
77
- #[deprecated(since = "0.18.0", note = "See instead `Error::span`")]
78
- #[cfg(feature = "parse")]
79
- pub fn line_col(&self) -> Option<(usize, usize)> {
80
- #[allow(deprecated)]
81
- self.inner.line_col()
82
- }
83
84
85
impl serde::de::Error for Error {
0 commit comments