#![allow(unused)]fnmain() {
// This structure cannot be printed either with `fmt::Display` or// with `fmt::Debug`.structUnPrintable(i32);
// The `derive` attribute automatically creates the implementation// required to make this `struct` printable with `fmt::Debug`.#[derive(Debug)]structDebugPrintable(i32);
}