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