pub trait TryIntoArguments<'cx>: TryIntoArgumentsInternal<'cx> { }Expand description
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.
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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".