usedisplaydoc::Display;/// this type is pretty swell
#[derive(Display)]structFakeType;static_assertions::assert_impl_all!(FakeType:core::fmt::Display);/// this type is pretty swell2
#[derive(Display)]structFakeType2;static_assertions::assert_impl_all!(FakeType2:core::fmt::Display);fnmain(){}