Trait UnorderedPartialEq

Source
pub trait UnorderedPartialEq {
    // Required method
    fn unordered_eq(&self, other: &Self) -> bool;
}

Required Methods§

Source

fn unordered_eq(&self, other: &Self) -> 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.

Implementations on Foreign Types§

Source§

impl<T: UnorderedPartialEq> UnorderedPartialEq for Vec<T>

Source§

fn unordered_eq(&self, other: &Self) -> bool

Source§

impl<T: UnorderedPartialEq, M: PartialEq> UnorderedPartialEq for Meta<T, M>

Source§

fn unordered_eq(&self, other: &Self) -> bool

Implementors§