//! GPU lexer plan builder for Rust source text.
usevyre::ir::Program;/// Builder for the GPU Rust lexer.
pubstructRustLexerPlan;implRustLexerPlan{/// Create a new lexer plan.
pubfnnew()->Self{Self}/// Build the vyre::Program that lexes a source buffer.
////// **Not implemented:** returns an empty program. `vyre-frontend-rust` must
/// use the host `core::lex` path until GPU lexer IR lands (tracked OPEN).
pubfnbuild(&self)-> Program{Program::default()}}implDefault forRustLexerPlan{fndefault()->Self{Self::new()}}