Struct MaybeDangling
#[repr(transparent)]
pub struct MaybeDangling<P: ?Sized>(pub(in ::mem::maybe_dangling) P);
Allows wrapped references and boxes to dangle.
That is, if a reference (or a Box) is wrapped in MaybeDangling (including when in a
(nested) field of a compound type wrapped in MaybeDangling), it does not have to follow
pointer aliasing rules or be dereferenceable.
This can be useful when the value can become dangling while the function holding it is still executing (particularly in concurrent code). As a somewhat absurd example, consider this code:
# use ;
# use mem;
let mut boxed = Boxnew;
let ptr = Boxas_mut_ptr;
// Safety: the pointer comes from a box and thus was allocated before; `box` is not used afterwards
unsafe ;
forget; // <-- this is UB!
Even though the Box's destructor is not run (and thus we don't have a double free bug), this
code is still UB. This is because when moving boxed into forget, its validity invariants
are asserted, causing UB since the Box is dangling. The safety comment is as such wrong, as
moving the boxed variable as part of the forget call is a use.
To fix this we could use MaybeDangling:
# use ;
# use ;
let mut boxed = new;
let ptr = Boxas_mut_ptr;
// Safety: the pointer comes from a box and thus was allocated before; `box` is not used afterwards
unsafe ;
forget; // <-- this is OK!
Note that the bit pattern must still be valid for the wrapped type. That is, references (and boxes) still must be aligned and non-null.
Additionally note that safe code can still assume that the inner value in a MaybeDangling is
not dangling -- functions like as_ref and into_inner are safe. It is not sound to
return a dangling reference in a MaybeDangling to safe code. However, it is sound
to hold such values internally inside your code -- and there's no way to do that without
this type. Note that other types can use this type and thus get the same effect; in particular,
ManuallyDrop will use MaybeDangling.
Note that MaybeDangling doesn't prevent drops from being run, which can lead to UB if the
drop observes a dangling value. If you need to prevent drops from being run use ManuallyDrop
instead.
Fields
0: P
Implementations
impl<P: ?Sized> MaybeDangling<P>
const fn new(x: P) -> Self where P: Sized,Wraps a value in a
MaybeDangling, allowing it to dangle.const fn as_ref(&self) -> &PReturns a reference to the inner value.
Note that this is UB if the inner value is currently dangling.
const fn as_mut(&mut self) -> &mut PReturns a mutable reference to the inner value.
Note that this is UB if the inner value is currently dangling.
const fn into_inner(self) -> P where P: Sized,Extracts the value from the
MaybeDanglingcontainer.Note that this is UB if the inner value is currently dangling.
Trait Implementations
impl<P: Clone + ?Sized> Clone for MaybeDangling<P>
fn clone(&self) -> MaybeDangling<P>
impl<P: Copy + ?Sized> Copy for MaybeDangling<P>
impl<P: Debug + ?Sized> Debug for MaybeDangling<P>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<P: Default + ?Sized> Default for MaybeDangling<P>
fn default() -> MaybeDangling<P>
impl<T: ?Sized> StructuralPartialEq for MaybeDangling<T>
Auto Trait Implementations
impl<P> Freeze for MaybeDangling<P>
where
P: Freeze + ?Sized,
impl<P> RefUnwindSafe for MaybeDangling<P>
where
P: RefUnwindSafe + ?Sized,
impl<P> Send for MaybeDangling<P>
where
P: Send + ?Sized,
impl<P> Sync for MaybeDangling<P>
where
P: Sync + ?Sized,
impl<P> Unpin for MaybeDangling<P>
where
P: Unpin + ?Sized,
impl<P> UnsafeUnpin for MaybeDangling<P>
where
P: UnsafeUnpin + ?Sized,
impl<P> UnwindSafe for MaybeDangling<P>
where
P: UnwindSafe + ?Sized,
Blanket Implementations
impl<T> Any for MaybeDangling<P>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for MaybeDangling<P>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for MaybeDangling<P>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for MaybeDangling<P>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for MaybeDangling<P>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Printable for MaybeDangling<P>
where
T: Copy + Debug,
impl<T> SizeHint for MaybeDangling<P>
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for MaybeDangling<P>
impl<T, U> Into<U> for MaybeDangling<P>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for MaybeDangling<P>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for MaybeDangling<P>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>