dyn-eq

Crates.iodyn-eq
lib.rsdyn-eq
version0.1.3
sourcesrc
created_at2023-02-16 22:56:02.583376
updated_at2023-07-20 11:39:35.049341
descriptionTest equality between trait objects
homepage
repositoryhttps://github.com/Rayzeq/dyn-eq
max_upload_size
id787106
size33,462
Rayzeq (Rayzeq)

documentation

README

Test equality between trait objects

github crates.io doc.rs license build passively-maintained

This crate provides a DynEq trait which permit comparing trait objects. If the two objects are instances of different structs, they will always be not equal. If they are instances of the same struct, the struct's Eq will be used.

Example

use dyn_eq::DynEq;

trait MyTrait: DynEq {}
dyn_eq::eq_trait_object!(MyTrait);

impl MyTrait for u8 {}
impl MyTrait for u16 {}

let a: &dyn MyTrait = &5u8;
let a_bis: &dyn MyTrait = &5u8;
let b: &dyn MyTrait = &10u8;
let c: &dyn MyTrait = &5u16;
let d: &dyn MyTrait = &10u16;

// Same type, same value
assert!(a == a_bis);
// Same type, different value
assert!(a != b);
// Different type, different value
assert!(a != d);
// Different type, same value
// Even if the value is the same, the fact that it's a diffrent type means it's not equal
assert!(a != c);

// Now data structures containing Box<dyn MyTrait> can derive Eq.
#[derive(PartialEq, Eq)]
struct Container {
    field: Box<dyn MyTrait>
}
Commit count: 33

cargo fmt