pub trait TensorFillAPI<T> {
// Required method
fn fill_f(a: &mut Self, b: T) -> Result<()>;
// Provided method
fn fill(a: &mut Self, b: T) { ... }
}
Required Methods§
Provided Methods§
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.