Type Alias BlockRange
pub type BlockRange = Range<usize>;Aliased Type§
pub struct BlockRange {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).