start 04 traits, completed upto 10
This commit is contained in:
@@ -4,6 +4,12 @@ pub struct WrappingU32 {
|
||||
value: u32,
|
||||
}
|
||||
|
||||
impl From<u32> for WrappingU32 {
|
||||
fn from(value: u32) -> Self {
|
||||
WrappingU32 { value }
|
||||
}
|
||||
}
|
||||
|
||||
fn example() {
|
||||
let wrapping: WrappingU32 = 42.into();
|
||||
let wrapping = WrappingU32::from(42);
|
||||
|
||||
Reference in New Issue
Block a user