2024-05-18 23:56:39 +08:00
|
|
|
// TODO: Implement the `From` trait for the `WrappingU32` type to make `example` compile.
|
2024-05-13 04:21:03 +08:00
|
|
|
|
|
|
|
pub struct WrappingU32 {
|
|
|
|
value: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn example() {
|
|
|
|
let wrapping: WrappingU32 = 42.into();
|
|
|
|
let wrapping = WrappingU32::from(42);
|
|
|
|
}
|