comparable_test 0.5.7

A library for comparing data structures in Rust, oriented toward testing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(clippy::derive_partial_eq_without_eq)]
// Many fixtures below carry deliberately-unused fields to exercise
// #[comparable_ignore] and the various derive shapes.
#![allow(dead_code)]

mod array;
mod boxes;
mod empty;
mod enums;
mod map;
mod opt;
mod path;
mod scalar;
mod set;
mod string;
mod structs;
mod tuple;
mod unions;