| Crates.io | dumbeq |
| lib.rs | dumbeq |
| version | 0.1.2 |
| created_at | 2025-04-27 06:13:08.05963+00 |
| updated_at | 2025-05-04 13:42:39.486892+00 |
| description | DumbEq is a safe library providing a derive macro of same name that implements [`std::cmp::PartialEq`] and [`std::cmp::Eq`], always false. |
| homepage | https://crates.io/crates/dumbeq |
| repository | |
| max_upload_size | |
| id | 1650810 |
| size | 12,705 |
dumb implementation of [std::cmp::PartialEq] and [std::cmp::Eq]
DumbEq is always false.
Example
use dumbeq::*;
#[derive(DumbEq, Debug)]
pub struct Same;
assert!(Same != Same, "not the same");