pub trait VectorSumNativeExpand {
// Required methods
fn __expand_native_vector_sum_scalar(
scope: &Scope,
input: ExpandValue,
) -> ExpandValue;
fn __expand_native_vector_sum(
scope: &Scope,
input: ExpandValue,
) -> ExpandValue;
}Required Methods§
fn __expand_native_vector_sum_scalar( scope: &Scope, input: ExpandValue, ) -> ExpandValue
fn __expand_native_vector_sum(scope: &Scope, input: ExpandValue) -> ExpandValue
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".