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