#[repr(C)]pub struct Local {
pub handle: *mut c_void,
}Expand description
A V8 Local handle.
Local handles get associated to a V8 HandleScope container. Note: Node.js creates a
HandleScope right before calling functions in native addons.
Fields§
§handle: *mut c_voidTrait Implementations§
Auto Trait Implementations§
impl Freeze for Local
impl RefUnwindSafe for Local
impl !Send for Local
impl !Sync for Local
impl Unpin for Local
impl UnwindSafe for Local
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