此代码有效:
use serde::{Deserialize, Serialize};
use std::sync::{RwLock, Arc};
use ron;
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord)]
struct Foo {
first: u8,
second: u16,
}
fn main() {
let foo = Foo {first: 1, second: 2};
let lock = Arc::new(RwLock::new(foo));
let state = lock.read().unwrap().clone(); // FIXME: remove clone()
let string = ron::ser::to_string(&state).unwrap();
println!("{}", string);
}
我想摆脱我的程序中的.clone()
as foo
100MB+,我需要多次引用这个参考。
当我摆脱时,.clone()
我得到了错误:
error[E0277]: the trait bound `std::sync::RwLockReadGuard<'_, Foo>: _::_serde::Serialize` is not satisfied
--> src/bin/sandbox7.rs:16:35
|
16 | let string = ron::ser::to_string(&state).unwrap();
| ^^^^^^ the trait `_::_serde::Serialize` is not implemented for `std::sync::RwLockReadGuard<'_, Foo>`
|
::: /home/chris/.cargo/registry/src/github.com-1ecc6299db9ec823/ron-0.6.0/src/ser/mod.rs:25:8
|
25 | T: Serialize,
| --------- required by this bound in `ron::ser::to_string`
我想序列化foo
(从另一个线程,在真实代码中,因此是 Arc)。
我怎样才能得到一个&Foo
从lock
,没有浪费.clone()
?