Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in serde

How to implement serde::Deserialize on struct containing &'static str?

How to read response JSON as structs when they contain hyphens in key names?

Shared option-like serializable type with C/C++

rust serde

Can I serialize a struct camel_case and deserialize PascalCase in Rust

rust serde

json method not found when Deserializing a request response

How to deserialize a string field to bool

rust serde

the trait `Serialize` is not implemented for <'_>

rust serde rust-rocket

How do I use `serde_json_core` to deserialise an array without allocations?

rust serde

How to fix "the trait Factory<_, _, _> is not implemented for {function}" error in actix_web?

rust serde actix-web

How does the Vistor trait allow only partial implementation?

rust visitor-pattern serde

Getting a request from Hyper, parsing the JSON, and turning it into a struct in rust

json rust serde hyper

Custom deserialization of an array or array of values using Serde [duplicate]

rust serde

Is it possible to get the line/character position at which a field was found by Serde

rust yaml serde

edition = "2018" use or not use `extern crate <name>` [duplicate]

rust serde

How to use serde's skip_serializing_if with empty slices?

rust serde

How to deserialize a map into a vector of a custom struct, with a field matching the key?

How can I deserialize an enum with an optional internal tag?

rust serde

How to read JSON file with serde?

rust serde