erased-serde icon indicating copy to clipboard operation
erased-serde copied to clipboard

Type-erased Serialize, Serializer and Deserializer traits

Results 7 erased-serde issues
Sort by recently updated
recently updated
newest added

I'm trying to implement a kind of user-extensible deserialization that allows you to "plug in" extra deserialize implementations. The basic idea is to have a `Seed` struct containing a `HashMap...

After https://github.com/dtolnay/serde-yaml/pull/234, I decided to write my own serde serializer/deserializer to accomplish what I wanted regarding text serialization with comments, blocks and alternate integer bases. [Serde-annotate](https://github.com/lowRISC/serde-annotate/) allows one to emit...

```rust use serde::Serialize; #[derive(Serialize)] struct Node { k: Option, } fn main() { std::thread::Builder::new() .stack_size(2 * 1024 * 1024) .name("test".to_string()) .spawn(move || { let mut node = None::; for _...

bug

I'm sorry if this may be a duplicate, but I've gone down a bit of a rabbit hole trying to get this to work. I have a trait `Subscriber` which...

I am working on a library that I would like the library to remain format-agnostic. To do this I am using `erased-serde` to "inject" the format at runtime as a...

The serde_cbor crate is retired. https://github.com/pyfisch/cbor/commit/347a3f096d5a1e8e380b9968e74838c9037a5b14

As the title says, I am trying to call a 'classic' `serde` serialize method: ``` pub fn serialize( __self: &Message, __serializer: __S ) -> Result where __S: Serializer, ``` Where...