We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e69a62c commit d3c3588Copy full SHA for d3c3588
library/core/src/num/nonzero.rs
@@ -84,7 +84,7 @@ macro_rules! nonzero_integers {
84
///
85
/// # Safety
86
/// The referenced value must not be currently zero.
87
- #[unstable(feature = "nonzero_from_mut", issue = "none")]
+ #[unstable(feature = "nonzero_from_mut", issue = "106290")]
88
#[must_use]
89
#[inline]
90
pub unsafe fn from_mut_unchecked(n: &mut $Int) -> &mut Self {
@@ -101,7 +101,7 @@ macro_rules! nonzero_integers {
101
102
/// Converts a primitive mutable reference to a non-zero mutable reference
103
/// if the referenced integer is not zero.
104
105
106
107
pub fn from_mut(n: &mut $Int) -> Option<&mut Self> {
0 commit comments