Expand description
A lightweight, self-contained s-expression parser and data format.
Use parse to get an s-expression from its string representation, and the
Display trait to serialize it, potentially by doing sexp.to_string().
Structs§
- Error
- The representation of an s-expression parse error.
Enums§
- Atom
- A single data element in an s-expression. Floats are excluded to ensure atoms may be used as keys in ordered and hashed data structures.
- Sexp
- An s-expression is either an atom or a list of s-expressions. This is similar to the data format used by lisp.