PartialEq_

Trait PartialEq_ 

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

Required Methods§

Source

fn 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> PartialEq_ for Arc<T>

Source§

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

Source§

impl<T: PartialEq_> PartialEq_ for Option<T>

Source§

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

Implementors§

Source§

impl<T: Marker> PartialEq_ for Id<T>