pub struct RootedGuard<'a, T: 'a + RootKind> {
root: *mut Rooted<T>,
anchor: PhantomData<&'a mut Rooted<T>>,
}Expand description
Rust API for keeping a Rooted value in the context’s root stack.
Example usage: rooted!(in(cx) let x = UndefinedValue());.
RootedGuard::new also works, but the macro is preferred.
Fields§
§root: *mut Rooted<T>§anchor: PhantomData<&'a mut Rooted<T>>Implementations§
Source§impl<'a, T: 'a + RootKind> RootedGuard<'a, T>
impl<'a, T: 'a + RootKind> RootedGuard<'a, T>
pub fn new( cx: *mut JSContext, root: &'a mut MaybeUninit<Rooted<T>>, initial: T, ) -> Self
pub fn handle(&'a self) -> Handle<'a, T>
pub fn handle_mut(&mut self) -> MutableHandle<'_, T>
pub fn as_ptr(&self) -> *mut T
Sourcepub fn as_ref<'s: 'r, 'cx: 'r, 'r>(&'s self, _no_gc: &'cx NoGC) -> &'r Twhere
'a: 's,
pub fn as_ref<'s: 'r, 'cx: 'r, 'r>(&'s self, _no_gc: &'cx NoGC) -> &'r Twhere
'a: 's,
Obtains a reference to the value pointed to by this handle.
While this reference is alive, no GC can occur, because of the _no_gc argument:
ⓘ
use mozjs::context::*;
use mozjs::jsapi::JSObject;
use mozjs::rooted;
fn gc(cx: &mut JSContext) {}
fn f(cx: &mut JSContext, obj: *mut JSObject) {
rooted!(&in(cx) let mut root = obj);
let r = root.as_ref(cx);
gc(cx); // cannot call gc while r (thus cx borrow) is alive
drop(r); // otherwise rust automatically drops r before gc call
}Sourcepub fn as_mut_ref<'s: 'r, 'cx: 'r, 'r>(
&'s mut self,
_no_gc: &'cx NoGC,
) -> &'r mut Twhere
'a: 's,
pub fn as_mut_ref<'s: 'r, 'cx: 'r, 'r>(
&'s mut self,
_no_gc: &'cx NoGC,
) -> &'r mut Twhere
'a: 's,
Obtains a reference to the value pointed to by this handle.
While this reference is alive, no GC can occur, because of the _no_gc argument:
ⓘ
use mozjs::context::*;
use mozjs::jsapi::JSObject;
use mozjs::rooted;
fn gc(cx: &mut JSContext) {}
fn f(cx: &mut JSContext, obj: *mut JSObject) {
rooted!(&in(cx) let mut root = obj);
let r = root.as_mut_ref(cx);
gc(cx); // cannot call gc while r (thus cx borrow) is alive
drop(r); // otherwise rust automatically drops r before gc call
}Sourcepub unsafe fn as_mut<'b>(&'b mut self) -> &'b mut Twhere
'a: 'b,
pub unsafe fn as_mut<'b>(&'b mut self) -> &'b mut Twhere
'a: 'b,
Safety: GC must not run during the lifetime of the returned reference.
Prefer using RootedGuard::as_mut_ref instead.
pub fn get(&self) -> Twhere
T: Copy,
pub fn set(&mut self, v: T)
Source§impl<'a, T> RootedGuard<'a, Option<T>>
impl<'a, T> RootedGuard<'a, Option<T>>
Source§impl<'a, T> RootedGuard<'a, Vec<T>>
impl<'a, T> RootedGuard<'a, Vec<T>>
Trait Implementations§
Source§impl<'a, T: 'a + RootKind> Deref for RootedGuard<'a, T>
impl<'a, T: 'a + RootKind> Deref for RootedGuard<'a, T>
Source§impl<'a, T: 'a + RootKind> Drop for RootedGuard<'a, T>
impl<'a, T: 'a + RootKind> Drop for RootedGuard<'a, T>
Source§impl From<&RootedGuard<'_, Vec<Value>>> for HandleValueArray
impl From<&RootedGuard<'_, Vec<Value>>> for HandleValueArray
Source§fn from(vec: &RootedGuard<'_, Vec<JSVal>>) -> HandleValueArray
fn from(vec: &RootedGuard<'_, Vec<JSVal>>) -> HandleValueArray
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&RootedGuard<'a, ValueArray<N>>> for HandleValueArray
impl<'a, const N: usize> From<&RootedGuard<'a, ValueArray<N>>> for HandleValueArray
Source§fn from(array: &RootedGuard<'a, ValueArray<N>>) -> HandleValueArray
fn from(array: &RootedGuard<'a, ValueArray<N>>) -> HandleValueArray
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a, T> Freeze for RootedGuard<'a, T>
impl<'a, T> RefUnwindSafe for RootedGuard<'a, T>
impl<'a, T> !Send for RootedGuard<'a, T>
impl<'a, T> !Sync for RootedGuard<'a, T>
impl<'a, T> Unpin for RootedGuard<'a, T>
impl<'a, T> !UnwindSafe for RootedGuard<'a, T>
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
Mutably borrows from an owned value. Read more
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>
Creates a filterable data provider with the given name for debugging. Read more