pub type Span = Range<u64>;Expand description
Range of input in bytes, that corresponds to some piece of XML
Aliased Type§
pub struct Span {
pub start: u64,
pub end: u64,
}Fields§
§start: u64The lower bound of the range (inclusive).
end: u64The upper bound of the range (exclusive).