pub struct OpDecl {
pub name: &'static str,
pub v8_fn_ptr: FunctionCallback,
pub enabled: bool,
pub is_async: bool,
pub is_unstable: bool,
pub is_v8: bool,
pub fast_fn: Option<Box<dyn FastFunction>>,
}
Fields§
§name: &'static str
§v8_fn_ptr: FunctionCallback
§enabled: bool
§is_async: bool
§is_unstable: bool
§is_v8: bool
§fast_fn: Option<Box<dyn FastFunction>>