11 lines
229 B
Rust
11 lines
229 B
Rust
// TODO: Implement the `From` trait for the `u32` type to make `example` compile.
|
|
|
|
pub struct WrappingU32 {
|
|
value: u32,
|
|
}
|
|
|
|
fn example() {
|
|
let wrapping: WrappingU32 = 42.into();
|
|
let wrapping = WrappingU32::from(42);
|
|
}
|