pub trait IsIsomorph {
// Required method
fn is_isomorph(
&self,
other: &Self,
rn: &RenameMap,
report_self: &mut Report,
report_other: &mut Report,
) -> bool;
}Required Methods§
fn is_isomorph( &self, other: &Self, rn: &RenameMap, report_self: &mut Report, report_other: &mut Report, ) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.