serde_fmt
Convert any serde::Serialize
into a std::fmt::Debug
:
```rust fn takesserialize(v: impl Serialize) { dbg!(serdefmt::to_debug(&v));
// Do something with `v`
} ```
rustc
This library requires a Rust compiler that's at least 1.42.0
.
Add serde_fmt
to your Cargo.toml
:
toml
[dependencies.serde_fmt]
version = "1.0.1"
By default, this library will depend on the standard library. To use it it no-std environments, you can disable the default crate features:
toml
[dependencies.serde_fmt]
version = "1.0.1"
default-features = false