pub struct Trusted<T: DomObject> {
refcount: Arc<TrustedReference>,
owner_thread: *const LiveDOMReferences,
phantom: PhantomData<T>,
}
Expand description
A safe wrapper around a raw pointer to a DOM object that can be
shared among threads for use in asynchronous operations. The underlying
DOM object is guaranteed to live at least as long as the last outstanding
Trusted<T>
instance.
Fields§
§refcount: Arc<TrustedReference>
A pointer to the Rust DOM object of type T, but void to allow
sending Trusted<T>
between threads, regardless of T’s sendability.
owner_thread: *const LiveDOMReferences
§phantom: PhantomData<T>
Implementations§
Trait Implementations§
source§impl<T: DomObject> JSTraceable for Trusted<T>
impl<T: DomObject> JSTraceable for Trusted<T>
impl<T: DomObject> Send for Trusted<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for Trusted<T>
impl<T> !Sync for Trusted<T>
impl<T> Unpin for Trusted<T>where
T: Unpin,
impl<T> !UnwindSafe for Trusted<T>
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> MaybeBoxed<Box<T, Global>> for T
impl<T> MaybeBoxed<Box<T, Global>> for T
source§fn maybe_boxed(self) -> Box<T, Global>
fn maybe_boxed(self) -> Box<T, Global>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert