Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in serde

How can I implement serde for a type that I don't own and have it support compound /wrapper/collection types

rust traits serde

Is there a way to "flatten" enums for (de)serialization in Rust?

enums rust serde

Is it possible to define a field with the same name as a keyword?

rust serde

Rust serde deserialize dynamic trait

rust serde trait-objects

How do I parse a JSON body in Rocket when the content type is not "application/json"?

json rust serde rust-rocket

Sending "application/x-www-form-urlencoded" data in place of JSON over network

rust serde

It is possible to discard items that fail to parse and continue parsing with serde_json? [duplicate]

Using Box to optimise memory allocation of optional, known length arrays

rust serde

How to skip serde serialization with skip_serializing_if for a boolean field

rust serde

How to use serde on stable release of Rust

rust serde

How do I serialize and deserialize a remote crate's enum as a number?

rust serde

Use of Serde's #[serde(transparent)]

json rust serde

How to ensure at compile time that a type will serialize into a JSON array?

rust serde

How to write a custom rename_all property for serde?

rust serde

Deserialize "catch all" variant in a tagged enum

rust enums serde

Deserialize value that may be an array of strings or a constant string?