1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#![allow(missing_docs)]
use std::any::Any;
use wasmtime_runtime::VMExternRef;
#[derive(Clone, Debug)]
pub struct ExternRef {
pub(crate) inner: VMExternRef,
}
impl ExternRef {
pub fn new<T>(value: T) -> ExternRef
where
T: 'static + Any,
{
let inner = VMExternRef::new(value);
ExternRef { inner }
}
pub fn data(&self) -> &dyn Any {
&*self.inner
}
pub fn strong_count(&self) -> usize {
self.inner.strong_count()
}
pub fn ptr_eq(&self, other: &ExternRef) -> bool {
VMExternRef::eq(&self.inner, &other.inner)
}
}