pub type RustToken = Token<RustTokenType>;Expand description
Rust 语言的标记
Aliased Type§
pub struct RustToken {
pub kind: RustTokenType,
pub span: Range<usize>,
}Fields§
§kind: RustTokenTypeThe kind/category of this kind (e.g., keyword, identifier, number)
span: Range<usize>The byte range in the source text that this kind occupies