Tracking Issue for NonZeroXxx::from_mut/from_mut_unchecked (nonzero_from_mut)
Feature gate: #![feature(nonzero_from_mut)]
This is a tracking issue for the associated functions NonZeroXxx::from_mut and NonZeroXxx::from_mut_unchecked.
These associated functions allow converting a mutable reference to a primitive integer (&mut xxx) into the equivalent &mut NonZeroXxx, with or without validation. The safety is guaranteed by the mutable reference, but currently there is no way to perform this conversion without relying on an unsafe transparent cast.
Public API
<!-- For most library features, it'd be useful to include a summarized version of the public API. (E.g. just the public function signatures without their doc comments or implementation.) -->// core::num
// $NonZeroInt is one of all signed and unsigned non-zero integer types in core::num,
// and $int is the corresponding primitive type.
impl $NonZeroInt {
pub fn from_mut(n: &mut $int) -> &mut $NonZeroInt;
pub unsafe fn from_mut_unchecked(n: &mut int) -> &mut $NonZeroInt;
}
Steps / History
<!-- For larger features, more steps might be involved. If the feature is changed later, please add those PRs here as well. -->- [ ] Implementation: #103730
- [ ] Final comment period (FCP)^1
- [ ] Stabilization PR
Unresolved Questions
<!-- Include any open questions that need to be answered before the feature can be stabilised. If multiple (unrelated) big questions come up, it can be a good idea to open a separate issue for each, to make it easier to keep track of the discussions. It's useful to link any relevant discussions and conclusions (whether on GitHub, Zulip, or the internals forum) here. -->- None yet.
- <!--
Thank you for creating a tracking issue!
Tracking issues are for tracking a feature from implementation to stabilization.
Make sure to include the relevant RFC for the feature if it has one.
If the new feature is small, it may be fine to skip the RFC process. In that
case, you can use use `issue = "none"` in your initial implementation PR. The
reviewer will ask you to open a tracking issue if they agree your feature can be
added without an RFC.
-->
Feature gate:
#![feature(nonzero_from_mut)]This is a tracking issue for the associated functions
<!-- Include a short description of the feature. -->NonZeroXxx::from_mutandNonZeroXxx::from_mut_unchecked.These associated functions allow converting a mutable reference to a primitive integer (
&mut xxx) into the equivalent&mut NonZeroXxx, with or without validation. The safety is guaranteed by the mutable reference, but currently there is no way to perform this conversion without relying on an unsafe transparent cast.Public API
<!-- For most library features, it'd be useful to include a summarized version of the public API. (E.g. just the public function signatures without their doc comments or implementation.) -->// core::num // $NonZeroInt is one of all signed and unsigned non-zero integer types in core::num, // and $int is the corresponding primitive type. impl $NonZeroInt { pub fn from_mut(n: &mut $int) -> Option<&mut $NonZeroInt>; pub unsafe fn from_mut_unchecked(n: &mut int) -> &mut $NonZeroInt; }Steps / History
<!-- For larger features, more steps might be involved. If the feature is changed later, please add those PRs here as well. -->- [x] ACP: rust-lang/libs-team#129
- [x] Implementation: #103730
- [ ] Final comment period (FCP)^1
- [ ] Stabilization PR
Unresolved Questions
<!-- Include any open questions that need to be answered before the feature can be stabilised. If multiple (unrelated) big questions come up, it can be a good idea to open a separate issue for each, to make it easier to keep track of the discussions. It's useful to link any relevant discussions and conclusions (whether on GitHub, Zulip, or the internals forum) here. -->- None yet.
Jonathan Chan Kwan Yin at 2022-12-30 15:00:33
This tracking issue has a different signature for
from_mutthan the implementation PR.asquared31415 at 2022-12-30 15:48:07
fixed
Jonathan Chan Kwan Yin at 2022-12-30 15:51:53
NonZero::from_mutcould return&mut Option<Self>instead ofOption<&mut Self>, due to the layout guarantee that0isNone::<NonZero<_>>[^1]. This would be strictly more powerful (you could get aOption<&mut Self>withOption::as_mutafter the cast; in fact, that is howfrom_mutis currently implemented).Also, note that you can do this cast (checked, returning
Option<NonZero<_>>) usingbytemuckandzerocopyon stable.[^1]: This is true for all currently valid
NonZero<_>types, but note that technically the layout-compatbility guarantee is currently only given on the specificNonZeroU32(etc) aliases/instantiations, not the genericNonZero<T>type itself.zachs18 at 2024-10-28 21:58:44