7 releases (4 stable)
1.0.3 | May 5, 2023 |
---|---|
1.0.2 | Apr 8, 2023 |
1.0.1 | May 22, 2020 |
0.1.0 | Feb 3, 2020 |
0.0.1 | Jul 11, 2019 |
#1747 in Encoding
1,004,980 downloads per month
Used in 4 crates
(via value-bag-serde1)
19KB
476 lines
serde_fmt
Convert any serde::Serialize
into a std::fmt::Debug
:
fn takes_serialize(v: impl Serialize) {
dbg!(serde_fmt::to_debug(&v));
// Do something with `v`
}
Supported rustc
This library requires a Rust compiler that's at least 1.42.0
.
Getting started
Add serde_fmt
to your Cargo.toml
:
[dependencies.serde_fmt]
version = "1.0.3"
By default, this library will depend on the standard library. To use it in no-std environments, you can disable the default crate features:
[dependencies.serde_fmt]
version = "1.0.3"
default-features = false
Dependencies
~98–325KB