Structs§
- Lexer
Lexeris the main struct of the crate that allows you to read through aSourceand produce tokens for enums implementing theLogostrait.
Enums§
Traits§
- Logos
- Trait implemented for an enum representing all tokens. You should never have
to implement it manually, use the
#[derive(Logos)]attribute on your enum.