node_sys/interface/
process_features.rs1use wasm_bindgen::prelude::*;
2
3#[wasm_bindgen]
4extern {
5 pub type ProcessFeatures;
6
7 #[wasm_bindgen(method, getter)]
8 pub fn debug(this: &ProcessFeatures) -> bool;
9
10 #[wasm_bindgen(method, getter)]
11 pub fn inspector(this: &ProcessFeatures) -> bool;
12
13 #[wasm_bindgen(method, getter)]
14 pub fn ipv6(this: &ProcessFeatures) -> bool;
15
16 #[wasm_bindgen(method, getter)]
17 pub fn tls(this: &ProcessFeatures) -> bool;
18
19 #[wasm_bindgen(method, getter)]
20 pub fn tls_alpn(this: &ProcessFeatures) -> bool;
21
22 #[wasm_bindgen(method, getter)]
23 pub fn tls_ocsp(this: &ProcessFeatures) -> bool;
24
25 #[wasm_bindgen(method, getter)]
26 pub fn tls_sni(this: &ProcessFeatures) -> bool;
27
28 #[wasm_bindgen(method, getter)]
29 pub fn uv(this: &ProcessFeatures) -> bool;
30}