pub trait FloatFrom:
Pod
+ Copy
+ MatrixFill
+ 'static {
// Required method
fn into_storage<'a, D: Device>(
data: impl Into<Cow<'a, [Self]>>,
device: &D,
) -> Result<D::FloatStorage>;
}Required Methods§
fn into_storage<'a, D: Device>( data: impl Into<Cow<'a, [Self]>>, device: &D, ) -> Result<D::FloatStorage>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".