pub trait Arguments<'a>: ArgumentsInternal<'a> { }
Expand description

The trait for specifying arguments for a function call. This trait is sealed and cannot be implemented by types outside of the Neon crate.

Note: This trait is implemented for tuples of up to 32 JavaScript values, but for the sake of brevity, only tuples up to size 8 are shown in this documentation.

Implementations on Foreign Types

Implementors