pub trait ContractThirdWithFirst<TKL> {
type Output;
// Required method
fn contract_third_with_first(&self, tensor: TKL) -> Self::Output;
}Required Associated Types§
Required Methods§
fn contract_third_with_first(&self, tensor: TKL) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".