IsEqual

Trait IsEqual 

Source
trait IsEqual: HashValue {
    // Required method
    fn is_equal(&self, other: &Self) -> bool;
}
Expand description

Custom equality check function which is used with ArrayHashSet for existence check.

Required Methods§

Source

fn is_equal(&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 IsEqual for bool

Source§

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

Source§

impl IsEqual for f32

Source§

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

Source§

impl IsEqual for f64

Source§

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

Source§

impl IsEqual for i8

Source§

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

Source§

impl IsEqual for i16

Source§

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

Source§

impl IsEqual for i32

Source§

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

Source§

impl IsEqual for i64

Source§

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

Source§

impl IsEqual for i128

Source§

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

Source§

impl IsEqual for str

Source§

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

Source§

impl IsEqual for u8

Source§

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

Source§

impl IsEqual for u16

Source§

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

Source§

impl IsEqual for u32

Source§

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

Source§

impl IsEqual for u64

Source§

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

Source§

impl IsEqual for f16

Source§

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

Source§

impl IsEqual for IntervalDayTime

Source§

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

Source§

impl IsEqual for IntervalMonthDayNano

Source§

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

Source§

impl IsEqual for [u8]

Source§

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

Source§

impl IsEqual for i256

Source§

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

Source§

impl<T: IsEqual + ?Sized> IsEqual for &T

Source§

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

Implementors§