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