Revision control

Copy as Markdown

Other Tools

#![allow(
// clippy is broken and shows wrong warnings
// clippy on stable does not know yet about the lint name
unknown_lints,
clippy::derive_partial_eq_without_eq,
)]
mod deserialize_fromstr;
mod serialize_display;
#[path = "../utils.rs"]
mod utils;
use expect_test::expect;
use utils::*;