pub trait Vectorized: CubeType<ExpandType: VectorizedExpand> {
// Provided methods
fn vector_size(&self) -> VectorSize { ... }
fn __expand_vector_size(
_scope: &Scope,
this: &Self::ExpandType,
) -> VectorSize { ... }
}Provided Methods§
fn vector_size(&self) -> VectorSize
fn __expand_vector_size(_scope: &Scope, this: &Self::ExpandType) -> VectorSize
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".