serde-json-core-fmt

Crates.ioserde-json-core-fmt
lib.rsserde-json-core-fmt
version0.1.1
sourcesrc
created_at2021-04-07 18:47:00.445564
updated_at2021-04-10 06:05:26.018648
descriptionserde-json for no_std programs
homepage
repositoryhttps://github.com/qiuchengxuan/serde-json-core
max_upload_size
id380520
size85,284
qiuchengxuan (qiuchengxuan)

documentation

README

Forked from serde-json-core, removed heapless dependency and changed to using core::fmt::Formatter

Usage

struct AnyStruct {}

impl core::fmt::Display for AnyStruct {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        serde_json_core_fmt::to_fmt(f, self)
    }
}
Commit count: 89

cargo fmt