Crate nelf

Source
Expand description

§No Escape List Format parser library

This library provides a simple implementation for NELF parser, a human-readable textfile format used to represent lists of strings of bytes without needing to escape any characters, which allows to borrow strings from the string that represents the encoded list without the need to allocate additional space.

§Stability

The API for this crate is unstable, if you want to use it, always specify the minor version you want to use in your Cargo.toml.

§Get started

To get started, check the documentation for the following structures and traits:

Structs§

NelfIter
Iterator of cells contained in the encoded list.

Traits§

ToCell
Trait used to encode strings as cells in a NELF list.
ToNelf
Trait used to convert containers of strings to NELF strings.