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 |
#361 in Encoding
888,019 downloads per month
Used in 3 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
lib.rs
:
serde
-> std::fmt
This library lets you take any Serialize
and format it as if it's Debug
.
The format produced is the same as if the type derived Debug
, and any
formatting flags will be preserved.
Getting started
Add serde_fmt
to your Cargo.toml
:
[dependencies.serde_fmt]
version = "1.0.3"
By default, this library doesn't depend on the standard library.
You can enable support with the std
Cargo feature:
[dependencies.serde_fmt]
version = "1.0.3"
features = ["std"]
Formatting a Serialize
Use the to_debug
function to treat a serde::Serialize
like a std::fmt::Debug
:
fn takes_serialize(v: impl Serialize) {
// You can dump any `Serialize` using the
// standard `dbg!` macro
dbg!(serde_fmt::to_debug(&v));
// do something with `v`
}
Dependencies
~110–345KB