pub type Field = Range<usize>;Expand description
Type alias for a byte range (slice index range).
Aliased Type§
pub struct Field {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).