Expand description
Types and traits for working with JavaScript functions.
Structs§
- Bind
Options - A builder for making a JavaScript function call like
parseInt("42")
. - Call
Options Deprecation planned - A builder for making a JavaScript function call like
parseInt("42")
. - Construct
Options Deprecation planned - A builder for making a JavaScript constructor call like
new Array(16)
.
Traits§
- Arguments
- The trait for specifying arguments for a function call. This trait is sealed and cannot be implemented by types outside of the Neon crate.
- TryInto
Arguments - The trait for specifying values to be converted into arguments for a function call. This trait is sealed and cannot be implemented by types outside of the Neon crate.