Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in serde

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

How can I deserialize an enum when the case doesn't match?

rust serde serde-json

How can I use Serde with a JSON array with different objects for successes and errors?

json rust serde

How can I ignore extra tuple items when deserializing with Serde? ("trailing characters" error)

rust serde

How to implement `serde::Serialize` for a boxed trait object?

rust polymorphism serde

Serialization of large struct to disk with Serde and Bincode is slow [duplicate]

performance file io rust serde

"invalid type: map, expected a sequence" when deserializing a nested JSON structure with Serde

Why does serde_json::from_reader take ownership of the reader?

json rust serde

How do I resolve "implementation of serde::Deserialize is not general enough" with actix-web's Json type?

rust serde actix-web

How can we write a generic function for checking Serde serialization and deserialization?

How to transform fields during serialization using Serde?

rust serde

Is it possible to flatten sub-object fields while parsing with serde_json?

json rust serde

How can deserialization of polymorphic trait objects be added in Rust if at all?

serialization rust serde

How to deserialize a JSON file which contains null values using Serde?

json rust serde

How do I use Serde to (de)serialize arrays greater than 32 elements, such as [u8; 128]?

How can I distinguish between a deserialized field that is missing and one that is null?

rust serde