Skip to content

Commit bb0896a

Browse files
committed
Auto merge of #54240 - csmoe:nonzero_from, r=alexcrichton
Impl From<NonZero<T>> for T Closes #54171 r? @SimonSapin
2 parents eb50e75 + 95c1d81 commit bb0896a

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/libcore/num/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,13 @@ assert_eq!(size_of::<Option<std::num::", stringify!($Ty), ">>(), size_of::<", st
9393

9494
}
9595

96+
#[stable(feature = "from_nonzero", since = "1.31.0")]
97+
impl From<$Ty> for $Int {
98+
fn from(nonzero: $Ty) -> Self {
99+
nonzero.0 .0
100+
}
101+
}
102+
96103
impl_nonzero_fmt! {
97104
(Debug, Display, Binary, Octal, LowerHex, UpperHex) for $Ty
98105
}

src/libcore/tests/nonzero.rs

+7
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,10 @@ fn test_match_nonzero_const_pattern() {
121121
_ => panic!("Expected the const item as a pattern to match.")
122122
}
123123
}
124+
125+
#[test]
126+
fn test_from_nonzero() {
127+
let nz = NonZeroU32::new(1).unwrap();
128+
let num: u32 = nz.into();
129+
assert_eq!(num, 1u32);
130+
}

0 commit comments

Comments
 (0)