Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in serde

Conditionally decoding JSON based on a field in the JSON

json rust serde

How can I merge two JSON objects with Rust?

How to avoid Serde needing the Default trait for a field that skips serialization?

rust serde

What is the equivalent of Java's transient in Serde?

serialization rust serde

Cannot get Diesel to infer a nullable Timestamp column in a SQLite table [duplicate]

rust serde

Deserializing an optional struct field with a generic type leads to semantic weirdness

rust serde

How can I use serde to serialize a struct to another Rust data structure?

rust serde

How can I accept multiple deserialization names for the same Serde field?

rust serde serde-json

How to deserialize into a enum variant based on a key name?

Why can Serde not derive Deserialize for a struct containing only a &Path?

rust serde

How to derive serde::Deserialize for a struct with members with lifetimes [duplicate]

rust lifetime serde

Can Serde deserialize JSON to one of a set of types depending on the value of a field?

rust serde

How to get at one particular item in JSON file using serde_json without deriving structs?

rust serde

How can I support an unknown or other value for a Serde enum?

rust serde

How can I deserialize a type where all the fields are default values as a None instead?

json rust serde serde-json

How to unit-test a deserialization function used in serde(deserialize_with)?

unit-testing rust serde

Optionally skip serializing a field with Serde?

rust serde

Deserialize a JSON string or array of strings into a Vec

rust serde serde-json

Convert two types into a single type with Serde

How do I deserialize into trait, not a concrete type?

serialization rust serde cbor