We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3acb445 commit 596410eCopy full SHA for 596410e
library/core/src/num/nonzero.rs
@@ -177,7 +177,7 @@ macro_rules! nonzero_integer {
177
///
178
/// # Safety
179
/// The referenced value must not be currently zero.
180
- #[unstable(feature = "nonzero_from_mut", issue = "none")]
+ #[unstable(feature = "nonzero_from_mut", issue = "106290")]
181
#[must_use]
182
#[inline]
183
pub unsafe fn from_mut_unchecked(n: &mut $Int) -> &mut Self {
@@ -194,7 +194,7 @@ macro_rules! nonzero_integer {
194
195
/// Converts a primitive mutable reference to a non-zero mutable reference
196
/// if the referenced integer is not zero.
197
198
199
200
pub fn from_mut(n: &mut $Int) -> Option<&mut Self> {
0 commit comments