Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in serde

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

How to pass an array of objects to WebAssembly and convert it to a vector of structs with wasm-bindgen?

How to transform fields during deserialization using Serde?

rust hex serde

Why is a trait not implemented for a type that clearly has it implemented?

rust serde

How can I deserialize JSON with a top-level array using Serde?

How can I deserialize an optional field with custom functions using Serde?

json serialization rust serde