blob: 51087ac68375870449978da94856a56f12f6d45e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(dead_code)]
use core::marker::PhantomData;
use derive_more::MulAssign;
#[derive(MulAssign)]
struct MyInt(i32);
#[derive(MulAssign)]
struct MyInts(i32, i32);
#[derive(MulAssign)]
#[mul_assign(forward)]
struct MyIntForward(i32);
#[derive(MulAssign)]
struct Point1D {
x: i32,
}
#[derive(MulAssign)]
struct Point2D {
x: i32,
y: i32,
}
#[derive(MulAssign)]
struct MyInt2<T> {
x: i32,
ph: PhantomData<T>,
}
|