Trait PolyfillEq

Source
pub trait PolyfillEq: View + Sized {
    // Required method
    fn polyfill_eq(&self, other: &Self) -> bool;
}
Expand description

A temporary replacement Clone

Required Methods§

Source

fn polyfill_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 PolyfillEq for &[bool]

Source§

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

Source§

impl PolyfillEq for &[i8]

Source§

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

Source§

impl PolyfillEq for &[i16]

Source§

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

Source§

impl PolyfillEq for &[i32]

Source§

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

Source§

impl PolyfillEq for &[i64]

Source§

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

Source§

impl PolyfillEq for &[i128]

Source§

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

Source§

impl PolyfillEq for &[u8]

Source§

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

Source§

impl PolyfillEq for &[u16]

Source§

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

Source§

impl PolyfillEq for &[u32]

Source§

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

Source§

impl PolyfillEq for &[u64]

Source§

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

Source§

impl PolyfillEq for &[u128]

Source§

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

Source§

impl PolyfillEq for &[usize]

Source§

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

Source§

impl PolyfillEq for bool

Source§

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

Source§

impl PolyfillEq for i8

Source§

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

Source§

impl PolyfillEq for i16

Source§

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

Source§

impl PolyfillEq for i32

Source§

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

Source§

impl PolyfillEq for i64

Source§

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

Source§

impl PolyfillEq for i128

Source§

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

Source§

impl PolyfillEq for u8

Source§

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

Source§

impl PolyfillEq for u16

Source§

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

Source§

impl PolyfillEq for u32

Source§

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

Source§

impl PolyfillEq for u64

Source§

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

Source§

impl PolyfillEq for u128

Source§

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

Source§

impl PolyfillEq for usize

Source§

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

Source§

impl PolyfillEq for Vec<bool>

Source§

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

Source§

impl PolyfillEq for Vec<i8>

Source§

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

Source§

impl PolyfillEq for Vec<i16>

Source§

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

Source§

impl PolyfillEq for Vec<i32>

Source§

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

Source§

impl PolyfillEq for Vec<i64>

Source§

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

Source§

impl PolyfillEq for Vec<i128>

Source§

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

Source§

impl PolyfillEq for Vec<u8>

Source§

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

Source§

impl PolyfillEq for Vec<u16>

Source§

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

Source§

impl PolyfillEq for Vec<u32>

Source§

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

Source§

impl PolyfillEq for Vec<u64>

Source§

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

Source§

impl PolyfillEq for Vec<u128>

Source§

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

Source§

impl PolyfillEq for Vec<usize>

Source§

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

Implementors§