我有没有办法获得对结构的特征实现的静态借用引用:
trait Trait {}
struct Example;
impl Trait for Example {}
这很好用:
static instance1: Example = Example;
这也可行:
static instance2: &'static Example = &Example;
但这不起作用:
static instance3: &'static Trait = &Example as &'static Trait;
因此失败了:
error[E0277]: the trait bound `Trait + 'static: std::marker::Sync` is not satisfied in `&'static Trait + 'static`
--> src/main.rs:10:1
|
10 | static instance3: &'static Trait = &Example as &'static Trait;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Trait + 'static` cannot be shared between threads safely
|
= help: within `&'static Trait + 'static`, the trait `std::marker::Sync` is not implemented for `Trait + 'static`
= note: required because it appears within the type `&'static Trait + 'static`
= note: shared static variables must have a type that implements `Sync`
或者,有没有办法从全局借用的静态指针到结构获取一个从特征中借用的静态指针:
static instance2: &'static Example = &Example;
fn f(i: &'static Trait) {
/* ... */
}
fn main() {
// how do I invoke f passing in instance2?
}
答案 0 :(得分:4)
是的,你可以如果这个特性也实现了Sync
:
Sync
或者,如果您宣布您的特质对象也实施trait Trait {}
struct Example;
impl Trait for Example {}
static INSTANCE3: &(dyn Trait + Sync) = &Example;
:
Sync
实施T
的类型是那些
[...]在线程之间共享引用是安全的。
当编译器确定它是合适的时,该特征会自动实现。
准确的定义是:如果
Sync
为&T
,则Send
类型为&T
。换句话说,如果在线程之间传递IntStream
引用时不存在未定义行为(包括数据争用)的可能性。
由于您正在共享引用,因此任何线程都可以调用该引用上的方法,因此您需要确保在发生这种情况时不会违反Rust的规则。