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