pub type ZigToken = Token<ZigTokenType>;Aliased Type§
pub struct ZigToken {
pub kind: ZigTokenType,
pub span: Range<usize>,
}Fields§
§kind: ZigTokenTypeThe kind/category of this kind (e.g., keyword, identifier, number)
span: Range<usize>The byte range in the source text that this kind occupies