serde-diff
serde-diff copied to clipboard
Disable clippy float compare warning
In this case clippy warning is raised that float comparison is being done:
#[derive(SerdeDiff)]
struct Test {
a: f32
}
As we care only about binary representation, then we can disable comparison warning.