summary refs log tree commit diff stats
path: root/README.md
blob: a8d8ceba27ea087b0713ab217e8266a22202fa4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Serde Transmute

Transmute objects through serde!

This crate allows converting a `Serialize` value into a `Deserialize` type.

## Caveats

The main caveat of note is that `Serialize` is not lifetime-aware, so the
`Deserialize` (or `DeserializeSeed`) cannot borrow from it.

But we don't care because this crate was built to power parts of `datafu`.
And it's pretty good at that.