[][src]Crate serde_json_core

serde-json for no_std programs

This version of serde-json is aimed at applications that run on resource constrained devices.

Current features

(*) Deserialization of strings ignores escaped sequences. Escaped sequences might be supported in the future using a different Serializer as this operation is not zero copy.

(**) Serialization of strings doesn't escape stuff. This simply has not been implemented yet.

Planned features

Non-features

This is explicitly out of scope

MSRV

This crate is guaranteed to compile on stable Rust 1.31.0 and up. It might compile with older versions but that may change in any new patch release.

Modules

de

Deserialize JSON data to a Rust data structure

ser

Serialize a Rust data structure into JSON data

Functions

from_slice

Deserializes an instance of type T from bytes of JSON text

from_str

Deserializes an instance of type T from a string of JSON text

to_string

Serializes the given data structure as a string of JSON text

to_vec

Serializes the given data structure as a JSON byte vector