pub trait AsArguments<'js> {
    fn apply<R>(self, func: &Function<'js>) -> Result<R>
    where
        R: FromJs<'js>
; fn construct<R>(self, func: &Function<'js>) -> Result<R>
    where
        R: FromJs<'js>
; fn defer_apply(self, func: &Function<'js>) -> Result<()>; }
Expand description

A helper trait to pass arguments on a function calls.

Required Methods

Implementations on Foreign Types

Implementors