pub(crate) struct CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,{
rooter: &'a mut CustomAutoRooter<T>,
}Expand description
An RAII guard used to root underlying data in CustomAutoRooter until the
guard is dropped (falls out of scope).
The underlying data can be accessed through this guard via its Deref and
DerefMut implementations.
This structure is created by root method on CustomAutoRooter or
by the auto_root! macro.
Fields§
§rooter: &'a mut CustomAutoRooter<T>Implementations§
Source§impl<'a, T> CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
impl<'a, T> CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
pub fn new( cx: *mut JSContext, rooter: &'a mut CustomAutoRooter<T>, ) -> CustomAutoRooterGuard<'a, T>
pub fn handle(&'a self) -> Handle<'a, T>where
T: RootKind,
pub fn handle_mut(&mut self) -> MutableHandle<'_, T>where
T: RootKind,
Trait Implementations§
Source§impl<'a, T> Deref for CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
impl<'a, T> Deref for CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
Source§impl<'a, T> DerefMut for CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
impl<'a, T> DerefMut for CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
Source§impl<'a, T> Drop for CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
impl<'a, T> Drop for CustomAutoRooterGuard<'a, T>where
T: 'a + CustomTrace,
Auto Trait Implementations§
impl<'a, T> Freeze for CustomAutoRooterGuard<'a, T>
impl<'a, T> RefUnwindSafe for CustomAutoRooterGuard<'a, T>where
T: RefUnwindSafe,
impl<'a, T> !Send for CustomAutoRooterGuard<'a, T>
impl<'a, T> !Sync for CustomAutoRooterGuard<'a, T>
impl<'a, T> Unpin for CustomAutoRooterGuard<'a, T>
impl<'a, T> UnsafeUnpin for CustomAutoRooterGuard<'a, T>
impl<'a, T> !UnwindSafe for CustomAutoRooterGuard<'a, T>
Blanket Implementations§
Source§impl<R> TryRngCore for Rwhere
R: TryRng,
impl<R> TryRngCore for Rwhere
R: TryRng,
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreSource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
Source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
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
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R> RngExt for R
impl<R> RngExt for R
Source§fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
Return a random value via the
StandardUniform distribution. Read moreSource§fn random_iter<T>(self) -> Iter<StandardUniform, Self, T>
fn random_iter<T>(self) -> Iter<StandardUniform, Self, T>
Source§fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
Generate a random value in the given range. Read more
Source§fn random_bool(&mut self, p: f64) -> bool
fn random_bool(&mut self, p: f64) -> bool
Return a bool with a probability
p of being true. Read moreSource§fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
Return a bool with a probability of
numerator/denominator of being
true. Read moreSource§fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
Sample a new value, using the given distribution. Read more
Source§fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T>where
D: Distribution<T>,
Self: Sized,
fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T>where
D: Distribution<T>,
Self: Sized,
Create an iterator that generates values using the given distribution. Read more