1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#![allow(dead_code)] #[macro_use] extern crate derive_more; #[derive(Mul)] struct MyInt(i32); #[derive(Mul)] struct MyInts(i32, i32); #[derive(Mul)] struct Point1D { x: i32, } #[derive(Mul)] struct Point2D { x: i32, y: i32, }