pub type ErrorLocation = StreamPosition;Expand description
Backward-compatible name for stream position information.
Aliased Type§
pub struct ErrorLocation {
pub line: usize,
pub column: usize,
pub offset: usize,
pub buffered: usize,
}Fields§
§line: usizeOne-based line number.
column: usizeOne-based character column.
offset: usizeAbsolute byte offset from the start of the stream.
buffered: usizeBytes held for the one unresolved top-level record.