Struct tokio_util::util::maybe_dangling::MaybeDangling
source · #[repr(transparent)]pub(crate) struct MaybeDangling<T>(MaybeUninit<T>);
Expand description
A wrapper type that tells the compiler that the contents might not be valid.
This is necessary mainly when T
contains a reference. In that case, the
compiler will sometimes assume that the reference is always valid; in some
cases it will assume this even after the destructor of T
runs. For
example, when a reference is used as a function argument, then the compiler
will assume that the reference is valid until the function returns, even if
the reference is destroyed during the function. When the reference is used
as part of a self-referential struct, that assumption can be false. Wrapping
the reference in this type prevents the compiler from making that
assumption.
§Invariants
The MaybeUninit
will always contain a valid value until the destructor runs.
Tuple Fields§
§0: MaybeUninit<T>
Implementations§
source§impl<T> MaybeDangling<T>
impl<T> MaybeDangling<T>
Trait Implementations§
source§impl<T> Drop for MaybeDangling<T>
impl<T> Drop for MaybeDangling<T>
source§impl<F: Future> Future for MaybeDangling<F>
impl<F: Future> Future for MaybeDangling<F>
Auto Trait Implementations§
impl<T> Freeze for MaybeDangling<T>where
T: Freeze,
impl<T> RefUnwindSafe for MaybeDangling<T>where
T: RefUnwindSafe,
impl<T> Send for MaybeDangling<T>where
T: Send,
impl<T> Sync for MaybeDangling<T>where
T: Sync,
impl<T> Unpin for MaybeDangling<T>where
T: Unpin,
impl<T> UnwindSafe for MaybeDangling<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more