pub trait IIStructuralComparableMethods: IIStructuralComparable {
// Provided method
fn compare_to(
self,
other: impl Into<Object>,
comparer: impl Into<IComparer_Interface>,
) -> i32 { ... }
}Provided Methods§
Sourcefn compare_to(
self,
other: impl Into<Object>,
comparer: impl Into<IComparer_Interface>,
) -> i32
fn compare_to( self, other: impl Into<Object>, comparer: impl Into<IComparer_Interface>, ) -> i32
CompareTo(crate::system::object::Object, crate::system::collections::icomparer_interface::IComparer_Interface) overload
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.
Implementors§
impl<__T: IIStructuralComparable> IIStructuralComparableMethods for __T
Available on crate feature
system-collections-istructuralcomparable only.