Crates.io | serde_transmute |
lib.rs | serde_transmute |
version | 0.1.4 |
source | src |
created_at | 2022-09-04 00:26:07.844082 |
updated_at | 2022-09-04 23:38:57.168022 |
description | Transmute objects through serde. |
homepage | |
repository | https://soniex2.autistic.space/git-repos/serde_transmute.git |
max_upload_size | |
id | 658099 |
size | 35,008 |
Transmute objects through serde!
This crate allows converting a Serialize
value into a Deserialize
type.
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.