Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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?

How to use a custom serde deserializer for chrono timestamps?

rust serde rust-chrono

How to create xml from struct in rust?

rust serde

How to pass options to Rust's serde that can be accessed in Deserialize::deserialize()?

How can I mass implement Deserialize for all types that implement a specific trait?