Skip to main content

Crate neco_json

Crate neco_json 

Source
Expand description

Zero-dependency minimal JSON codec for no_std environments.

Provides JsonValue for representing JSON data, parse for decoding, and encode for encoding.

Structs§

ParseError
JSON parse error with position information.

Enums§

AccessError
Accessor error.
EncodeError
JSON encoding error.
JsonValue
ParseErrorKind
Kinds of parse errors.

Traits§

FromJson
Constructs Self from a JsonValue reference.
ToJson
Converts self into a JsonValue.

Functions§

encode
Encodes a JsonValue into its minimal JSON byte representation.
parse
Parses a JSON byte slice into a JsonValue.