Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in serde

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?

How to handle potentially missing fields using serde_json and the Value enum?

rust serde

How to handle errors when extracting data from untyped JSON in serde_json?

json rust serde serde-json

How can I pattern match to get at the numbers that serde_json has parsed?

json rust serde

Implementing a generic length delimited hex deserializer in Serde

rust hex deserialization serde

How to write a trait bound for a reference to an associated type on the trait itself?

Prevent a serialized struct in Rust from being deserialized into a different one

rust deserialization serde

What is the fastest correct way to detect that there are no duplicates in a JSON array?

json algorithm rust serde