pub trait ContractBuilder<'a, T, La, Lb>{
// Required methods
fn scale(self, factor: T) -> Self;
fn eval(self) -> Tensor<T, DynRank>;
fn overwrite(self, c: &mut Slice<T>);
}Expand description
Builder interface for configuring tensor contraction operations
Required 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.