- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 event_emmiter_rs用于我的应用程序中的事件处理。该库允许您订阅带有回调的事件并触发这些事件。事件采用 (strings, value) 的形式,回调采用接受值参数的闭包形式。通过事件回调发送的值必须实现 Serde::Deserialize。 We can see this here in the docs .所以我创建了这个简单的设置:
use event_emitter_rs::EventEmitter;
use serde::Serialize;
use serde::Deserialize;
use std::borrow::Cow;
#[derive(Clone, Serialize, Deserialize, Debug)]
#[serde(bound(deserialize = "'de: 'static"))]
//#[serde(bound(deserialize = "'de: 'a"))] using the 'a lifetime gives same error
pub struct DraggableInfo<'a>{
parent: WidgetValue<'a>,
index: WidgetValue<'a>,
draggable_id: WidgetValue<'a>,
}
impl<'a> DraggableInfo<'a>{
pub fn new(parent: &'static str, index: u32, draggable_id: &'static str)->Self{
DraggableInfo{
parent: WidgetValue::CString(Cow::Borrowed(parent)),
index: WidgetValue::Unsized32(index),
draggable_id: WidgetValue::CString(Cow::Borrowed(draggable_id)),
}
}
}
#[derive(Clone, Serialize, Deserialize, Debug)]
pub enum WidgetValue<'a>{
Integer32(i32),
Unsized32(u32),
CString(Cow<'a, str>)
}
fn main(){
let mut event_emitter = EventEmitter::new();
event_emitter.on("Print Draggable Value", |dragValue: DraggableInfo| {dbg!(dragValue);});
event_emitter.emit("Print Draggable Value", DraggableInfo::new("root", 0, "layer 1"));
}
但这会导致错误消息:
error: implementation of `Deserialize` is not general enough
--> src\main.rs:34:19
|
34 | event_emitter.on("Print Draggable Value", |dragValue: DraggableInfo| {dbg!(dragValue);});
| ^^ implementation of `Deserialize` is not general enough
|
= note: `DraggableInfo<'_>` must implement `Deserialize<'0>`, for any lifetime `'0`...
= note: ...but `DraggableInfo<'_>` actually implements `Deserialize<'1>`, for some specific lifetime `'1`
我不确定 Deserialize<'0>
是什么和 Deserialize<'1>
消息所指的生命周期是,或者当编译器说 impl “过于笼统”时的确切含义。我该如何解决这个错误?
最佳答案
问题在评论中被驳回,但您的具体问题在此行中很突出:
#[serde(bound(deserialize = "'de: 'static"))]
作为Serde guide预先警告:
Note that
<T> where T: Deserialize<'static>
is never what you want. AlsoDeserialize<'de> + 'static
is never what you want. Generally writing'static
anywhere nearDeserialize
is a sign of being on the wrong track. Use one of the above bounds instead.
这应该具有实际意义:您永远不想从 100% 静态数据反序列化。那些WidgetValue
如果你有,它们会在运行时动态地进出范围(被创建/销毁),对吧?..
但是当你定义 CString
带有 reference 的变体到原始输入缓冲区(反序列化发生的事件负载)——你必须确保没有一个 WidgetValue
永远超过它的输入缓冲区。这就是 Rust 生命周期的目的,它们对机器检查保证 Bad Things™ 不会发生进行编码。
再次来自评论:简单的解决方案是拥有数据而不是借用(引用)它,即
pub enum WidgetValue {
Integer32(i32),
Unsized32(u32),
CString(String),
}
...但是这种简单性会让您付出性能代价,无论何时WidgetValue
,堆分配和无偿字符串复制。 s 被传递。你会失去 zero-copy capacity由 Serde 支持。并不是说它本质上是不好的;也许这个价格适合您的应用。
但是,许多程序员选择 Rust 用于那些性能很重要的应用程序。在安全方面也毫不妥协。也就是说:让我们亲自动手吧。
备注:Unsized32
是矛盾的,你可能打算写Unsigned32
.
注:在DraggableInfo::new
签名,为什么要求借来的字符串切片有'static
生命周期?这太严格了。简单 'a
就足够了。
the error is clear that the type needs to implement Deserialize for any lifetime
的确; .on
signature没有 'de
作为通用参数:
pub fn on<F, T>(&mut self, event: &str, callback: F) -> String where
T: Deserialize<'de>,
F: Fn(T) + 'static + Sync + Send,
这意味着调用者无法选择生命周期。这可能是无意的,也许可以尝试询问作者或 event_emitter_rs
图书馆;可能是一个微妙的错误,可能是设计使然。
顺便说一句:如果你想使用像 serde_json::from_reader
这样的东西为了在流中真正动态地反序列化——这整个零拷贝的努力是行不通的。这表示在DeserializeOwned
约束。 the guide 中也提到了这一事实, For example when deserializing from an IO stream no data can be borrowed.
在这一点上,我放弃了进一步的研究,因为我是在从流中解析 JSON 的上下文中访问这个问题的。这意味着我别无选择,只能做 DeserializeOwned
(即在我的数据结构中使用拥有的 String
而不是 &'a str
)。这也是有道理的,因为流数据是短暂的,所以从中借用根本行不通。
关于rust - Serde::Deserialize 的实现不够通用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68156340/
我的应用使用 Jackson。我得到的最小化构建主要使用此配置: # don't obfuscate Jackson classes -keep class com.fasterxml.** { *;
编辑:在我问这个问题的那一刻,我想到了尝试一些事情..我已经根据请求设置了 XmlNamespace 属性,这就成功了.. request.XmlNamespace = "http://musicbr
我使用可序列化和可反序列化的泛型。但是,Deserialize上有错误派生属性告诉无法推断类型。 struct 和 enum 都会抛出编译错误。评论其中之一不会解决任何问题。 use serde::{
passport.socketio 抛出此错误,同时无法授权用户。 Error: Error: Failed to deserialize user out of session 我已将问题范围缩小到
我正在尝试在具有借用内容的结构上派生反序列化: #[macro_use] extern crate serde_derive; use std::net::SocketAddr; #[derive(H
我执行查询以创建下面的Hive表: CREATE TABLE db1.test_create_tbl( column1 smallint COMMENT 'desc of column') COMME
这个问题在这里已经有了答案: Can System.Text.Json.JsonSerializer serialize collections on a read-only property? (
我正在使用 event_emmiter_rs用于我的应用程序中的事件处理。该库允许您订阅带有回调的事件并触发这些事件。事件采用 (strings, value) 的形式,回调采用接受值参数的闭包形式。
我收到一个错误...(不存在像默认构造函数这样的创建者):无法从对象值反序列化(没有基于委托(delegate)或基于属性的创建者),这表明我需要一个属性基于的创作者。我有几个具有不同参数但没有默认值
我相信我们需要一个自定义的反序列化器来对我们类的一个字段做一些特定的事情。看来一旦我这样做了,我现在负责反序列化所有其他领域。有没有办法让 jackson 反序列化除了我在这里关心的领域之外的所有领域
我有一个如下所示的类(class) class Person { Long id; String firstName; int age; } 我的输入看起来像这样: { "id
文档建议 NancyFx 帮助我解决 json 请求正文的 WRT 反序列化,但我不确定如何。请参阅下面的测试以演示: [TestFixture] public class ScratchNancy
考虑代码... using System; using System.Text.Json; public class Program { public static void Main()
有人让Deserializer工作吗?我正在方法“反序列化”而不是元素中获得完整的JSON表达式? public static void main(String[] args) { G
在尝试从 tokio TcpStream 反序列化为 JSON Value 时,我正在尝试使用此函数: use futures::prelude::*; use serde_json::Value;
我使用 Spring Boot 和 thymeleaf我尝试保存对象列表。 我的对象。 public class GECPD { public Integer id; public S
我正在尝试制作在线领唱。我需要从外部API获取包含货币值的表,正是从该页面:http://api.nbp.pl/api/exchangerates/tables/A?format=json我想在货币课
错误: java.lang.ClassNotFoundException: testprocedure.tp$3 at java.net.URLClassLoader$1.run(Unknown So
我开发了多个 GWT Web 应用程序。最新的一个是对另一个的稍微修改。除了最新的之外,所有这些都运行良好。异常(exception)是: The response could not be dese
我需要反序列化 1.5GB txt 文件。我正在使用 code.google.com/p/protobuf-net/中的 protobuf-net 有时它会因不同地方的不同异常(空引用、内存访问冲突)
我是一名优秀的程序员,十分优秀!