-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from bluss/stable-maybe-uninit
Use stable MaybeUninit when we can (feature detected)
- Loading branch information
Showing
5 changed files
with
67 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
|
||
use array::Array; | ||
use std::mem::MaybeUninit as StdMaybeUninit; | ||
|
||
pub struct MaybeUninit<T> { | ||
inner: StdMaybeUninit<T>, | ||
} | ||
|
||
impl<T> MaybeUninit<T> { | ||
/// Create a new MaybeUninit with uninitialized interior | ||
pub unsafe fn uninitialized() -> Self { | ||
MaybeUninit { inner: StdMaybeUninit::uninit() } | ||
} | ||
|
||
/// Create a new MaybeUninit from the value `v`. | ||
pub fn from(v: T) -> Self { | ||
MaybeUninit { inner: StdMaybeUninit::new(v) } | ||
} | ||
|
||
// Raw pointer casts written so that we don't reference or access the | ||
// uninitialized interior value | ||
|
||
/// Return a raw pointer to the start of the interior array | ||
pub fn ptr(&self) -> *const T::Item | ||
where T: Array | ||
{ | ||
// std MaybeUninit creates a &self.value reference here which is | ||
// not guaranteed to be sound in our case - we will partially | ||
// initialize the value, not always wholly. | ||
self.inner.as_ptr() as *const T::Item | ||
} | ||
|
||
/// Return a mut raw pointer to the start of the interior array | ||
pub fn ptr_mut(&mut self) -> *mut T::Item | ||
where T: Array | ||
{ | ||
self.inner.as_mut_ptr() as *mut T::Item | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters