pub trait AbstractTypeDefinitionExtension {
// Required method
fn is_implemented_by(
&self,
other_type: &dyn ImplementingInterfaceExtension,
) -> bool;
}
pub trait AbstractTypeDefinitionExtension {
// Required method
fn is_implemented_by(
&self,
other_type: &dyn ImplementingInterfaceExtension,
) -> bool;
}