1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use std::ffi::c_void;
use crate::External;
use crate::HandleScope;
use crate::Isolate;
use crate::Local;
extern "C" {
fn v8__External__New(
isolate: *mut Isolate,
value: *mut c_void,
) -> *const External;
fn v8__External__Value(this: *const External) -> *mut c_void;
}
impl External {
#[inline(always)]
pub fn new<'s>(
scope: &mut HandleScope<'s, ()>,
value: *mut c_void,
) -> Local<'s, Self> {
unsafe {
scope.cast_local(|sd| v8__External__New(sd.get_isolate_ptr(), value))
}
.unwrap()
}
#[inline(always)]
pub fn value(&self) -> *mut c_void {
unsafe { v8__External__Value(self) }
}
}