Docs.rs
strizer-0.1.0
strizer 0.1.0
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
aleics
Dependencies
Versions
81.25%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
strizer
0.1.0
All Items
Crate Items
Structs
Enums
Type Aliases
Crate
strizer
Copy item path
Source
Structs
§
Stream
Tokenizer
StreamTokenizer<R>
defines the structure for the tokenization of a given input that implements the
BufRead
trait. By using
BufRead
, the content of the text data is efficiently tokenized by reading it line-by-line.
String
Tokenizer
StringTokenizer
defines the structure for the tokenization of strings.
Token
Token
describes the primitive that is returned while iterating through a Tokenizer. Tokens can be of different type or kind:
Enums
§
Token
Kind
TokenKind
defines the different types of
Token
available.
Type Aliases
§
Span
Span
defines the absolute range of a
Token
inside the input data.