#[repr(C)]pub struct PersistentRooted {
pub _address: u8,
}
Expand description
A copyable, assignable global GC root type with arbitrary lifetime, an infallible constructor, and automatic unrooting on destruction.
These roots can be used in heap-allocated data structures, so they are not associated with any particular JSContext or stack. They are registered with the JSRuntime itself, without locking. Initialization may take place on construction, or in two phases if the no-argument constructor is called followed by init().
Note that you must not use an PersistentRooted in an object owned by a JS object:
Whenever one object whose lifetime is decided by the GC refers to another such object, that edge must be traced only if the owning JS object is traced. This applies not only to JS objects (which obviously are managed by the GC) but also to C++ objects owned by JS objects.
If you put a PersistentRooted in such a C++ object, that is almost certainly a leak. When a GC begins, the referent of the PersistentRooted is treated as live, unconditionally (because a PersistentRooted is a root), even if the JS object that owns it is unreachable. If there is any path from that referent back to the JS object, then the C++ object containing the PersistentRooted will not be destructed, and the whole blob of objects will not be freed, even if there are no references to them from the outside.
In the context of Firefox, this is a severe restriction: almost everything in
Firefox is owned by some JS object or another, so using PersistentRooted in
such objects would introduce leaks. For these kinds of edges, Heap
Fields§
§_address: u8
Trait Implementations§
source§impl Clone for PersistentRooted
impl Clone for PersistentRooted
source§fn clone(&self) -> PersistentRooted
fn clone(&self) -> PersistentRooted
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PersistentRooted
impl Debug for PersistentRooted
source§impl PartialEq for PersistentRooted
impl PartialEq for PersistentRooted
source§fn eq(&self, other: &PersistentRooted) -> bool
fn eq(&self, other: &PersistentRooted) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for PersistentRooted
impl StructuralPartialEq for PersistentRooted
Auto Trait Implementations§
impl Freeze for PersistentRooted
impl RefUnwindSafe for PersistentRooted
impl Send for PersistentRooted
impl Sync for PersistentRooted
impl Unpin for PersistentRooted
impl UnwindSafe for PersistentRooted
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more