Registry / utility / utf8-decode

utf8-decode

JSON →
library2.0.0rscratesunverified

Provides incremental decoding iterators for UTF-8 encoded data.

# Cargo.toml [dependencies] utf8-decode = "2.0.0"
INSTALL
IMPORT
SIG · UTF8-DECODE
U
utf8-decode
utilityrustv2.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Decoder
✓ use utf8_decode::Decoder;

Decodes UTF-8 bytes incrementally.

use utf8_decode::Decoder; fn main() { let bytes = b"hello"; let decoder = Decoder::new(bytes); for c in decoder { println!("{}", c.unwrap()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.0.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
utf8-decode — cargo add utf8-decode · libregistry