pub trait SimdCvtTruncate<T> {
// Required method
fn truncate_from(x: T) -> Self;
}
Expand description
Construction of integer vectors from floats by truncation
Required Methods§
fn truncate_from(x: T) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.