pub trait ContractFirstThirdFourthWithFirst<TIM, TKO, TLP> {
type Output;
// Required method
fn contract_first_third_fourth_with_first(
self,
object_a: TIM,
object_b: TKO,
object_c: TLP,
) -> Self::Output;
}Required Associated Types§
Required Methods§
fn contract_first_third_fourth_with_first( self, object_a: TIM, object_b: TKO, object_c: TLP, ) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".