serde专题提供serde的最新资讯内容,帮你更好的了解serde。
包含Box作为成员变量的结构: <pre class="lang-rust prettyprint-override"><code>type Item = dyn Fn() -&gt; Result&lt;(), Bo
我有一个这样的配置结构: <pre class="lang-rust prettyprint-override"><code>pub struct Configuration { flag1: bool,
我是铁锈和柴油的新手。并尝试使用火箭框架创建一个小型演示 api。<br/> 获取错误:<strong>特征绑定 <cod
使用 Serde,我想通过保留有效元素并跳过无效元素来反序列化一系列元素。 我有以下负载: <pre
我正在尝试使用 <a href="https://crates.io/crates/serde-xml-rs" rel="nofollow noreferrer">serde-xml-rs</a> 将 xml 文档反序列
我正在尝试将以下 JSON 片段反序列化为结构 <code>Vec</code> 的 <code>Shape</code>: <pre><code>use serde::{Deseriali
<pre class="lang-rust prettyprint-override"><code>use serde_derive::Deserialize; // 1.0.118 use toml; // 0.5.8 #[derive(Debug, Deserialize)
我想使用 <code>Vec&lt;u8&gt;</code> 将 <code>serde_cbor</code> 编码为 CBOR 字节字符串。我尝试了以下代码: <pre
我想用 Serde 解析 JSON: <pre><code>[999,{&#34;a&#34;:[[1,2,3], [12,3]], &#34;b&#34;:[[1,2,3], [12,3]]}, &#34;some_string&#34;]
我定义了一个 <code>enum ZcMapValue</code> 用作 <code>V</code> 的 <code>HashMap&lt;K,V&gt;</code>,但是当我将 <code>ZcMapVa
我正在尝试使用 <code>quick_xml::se::to_string</code> 函数。这似乎是一个公共函数,因为它 <a href="https://docs.rs/
我正在尝试使用 <code>serde-reflection</code> 创建一个解释结构结构的 JSON 结构,以便将结构作为 JavaScript 和
我对 Rust 很陌生,并且来自 OOP 背景。所以,也许我误解了一些 Rust 基础知识。 我想用 serde 解析一
使用 <code>actix_web::web::Query</code> 的 <a href="https://docs.rs/actix-web/3.3.2/actix_web/web/struct.Query.html" rel="nofollow nor
我有一个使用 <a href="https://serde.rs/container-attrs.html#default" rel="nofollow noreferrer">the <code>#[serde(default)]</code> c
我有这个简单的代码: <pre><code>use actix_web::{get, post, web, App, HttpResponse, HttpServer, Responder}; use serde::{Dese
我使用 <code>r2d2_postgres</code> 运行原始 SQL 并直接在 Actix 响应中返回结果。 我需要在编译时使用动
我正在尝试编写一个自定义的 <code>Deserialize</code> 实现,它可以对我的枚举执行不区分大小写的反序列化
我需要我的结构是可散列的。结构体在创建后永远不会发生变化,因此可以预先计算并将其存储为字段
我有一个大型的、有点复杂的数据结构,我可以使用 <code>serde</code> 和 <code>rmp-serde</code> 对其进行序列化