Docs.rs
step-io-0.2.4
step-io 0.2.4
Docs.rs crate page
MIT
OR
Apache-2.0
09 July 2026
Links
Repository
crates.io
Source
Owners
elgar328
Dependencies
logos ^0.16
normal
Versions
6.81%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module lexer
step_io
0.2.4
Module lexer
Module Items
Structs
Enums
Functions
In step_
io::
parser
step_io
::
parser
Module
lexer
Copy item path
Source
Structs
§
LexError
Self-contained lexical error including the offending span and a short snippet of the source text.
Lexer
Stateful Part 21 lexer that tracks line/column positions and wraps logos’s byte-level lexer.
Span
Position information for a lexed token.
Token
A lexed token carrying its kind and position.
Enums
§
LexError
Kind
Lexical error categories.
Token
Kind
Part 21 token kinds.
Functions
§
tokenize
Tokenize a source string into a
Vec<Token>
, halting at the first lexical error. Callers that need streaming or custom recovery should construct a
Lexer
directly.