Struct deno_core::OpDecl

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

Fields

name: &'static strv8_fn_ptr: FunctionCallbackenabled: boolis_async: boolis_unstable: boolargc: usize

V8 argument count. Used as an optimization hint by core.initalizeAsyncOps.

is_v8: boolfast_fn: Option<Box<dyn FastFunction>>

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.