pub trait AsPackedCallable<I, O> {
// Required method
fn call_packed(&self, packed_args: &[AnyView<'_>]) -> Result<Any>;
}Required Methods§
fn call_packed(&self, packed_args: &[AnyView<'_>]) -> Result<Any>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".