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 strv8_fn_ptr: FunctionCallbackenabled: boolis_async: boolis_unstable: boolis_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.