neon/sys/
raw.rs

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use std::ptr;

use super::bindings as napi;

pub type Local = napi::Value;

pub type FunctionCallbackInfo = napi::CallbackInfo;

pub type Env = napi::Env;

#[repr(C)]
#[derive(Clone, Copy)]
pub struct HandleScope {
    pub word: napi::HandleScope,
}

impl HandleScope {
    pub fn new() -> Self {
        Self {
            word: ptr::null_mut(),
        }
    }
}

impl Default for HandleScope {
    fn default() -> Self {
        Self::new()
    }
}

#[repr(C)]
#[derive(Clone, Copy)]
pub struct EscapableHandleScope {
    pub word: napi::EscapableHandleScope,
}

impl EscapableHandleScope {
    pub fn new() -> Self {
        Self {
            word: ptr::null_mut(),
        }
    }
}

impl Default for EscapableHandleScope {
    fn default() -> Self {
        Self::new()
    }
}