mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 12:11:59 +00:00
12 lines
246 B
Rust
12 lines
246 B
Rust
#[derive(Debug, PartialEq, Clone)]
|
|
pub struct FieldComparison {
|
|
pub field_name: String,
|
|
pub equal: bool,
|
|
pub a: String,
|
|
pub b: String,
|
|
}
|
|
|
|
pub trait CompareFields {
|
|
fn compare_fields(&self, b: &Self) -> Vec<FieldComparison>;
|
|
}
|