Trait sp_std::marker::Unpin 1.33.0[−][src]
pub auto trait Unpin { }Expand description
Types that can be safely moved after being pinned.
Rust itself has no notion of immovable types, and considers moves (e.g.,
through assignment or mem::replace) to always be safe.
The Pin type is used instead to prevent moves through the type
system. Pointers P<T> wrapped in the Pin<P<T>> wrapper can’t be
moved out of. See the pin module documentation for more information on
pinning.
Implementing the Unpin trait for T lifts the restrictions of pinning off
the type, which then allows moving T out of Pin<P<T>> with
functions such as mem::replace.
Unpin has no consequence at all for non-pinned data. In particular,
mem::replace happily moves !Unpin data (it works for any &mut T, not
just when T: Unpin). However, you cannot use mem::replace on data
wrapped inside a Pin<P<T>> because you cannot get the &mut T you
need for that, and that is what makes this system work.
So this, for example, can only be done on types implementing Unpin:
use std::mem; use std::pin::Pin; let mut string = "this".to_string(); let mut pinned_string = Pin::new(&mut string); // We need a mutable reference to call `mem::replace`. // We can obtain such a reference by (implicitly) invoking `Pin::deref_mut`, // but that is only possible because `String` implements `Unpin`. mem::replace(&mut *pinned_string, "other".to_string());
This trait is automatically implemented for almost every type.
Implementations on Foreign Types
impl Unpin for Argumentimpl Unpin for FormatSpecimpl Unpin for Alignmentimpl Unpin for CountImplementors
Auto implementors
impl Unpin for Infallibleimpl Unpin for FpCategoryimpl Unpin for IntErrorKindimpl Unpin for SearchStepimpl Unpin for RecvTimeoutErrorimpl Unpin for TryRecvErrorimpl Unpin for AllocErrorimpl Unpin for LayoutErrorimpl Unpin for BorrowErrorimpl Unpin for BorrowMutErrorimpl Unpin for NonZeroI16impl Unpin for NonZeroI32impl Unpin for NonZeroI64impl Unpin for NonZeroI128impl Unpin for NonZeroIsizeimpl Unpin for NonZeroU16impl Unpin for NonZeroU32impl Unpin for NonZeroU64impl Unpin for NonZeroU128impl Unpin for NonZeroUsizeimpl Unpin for ParseFloatErrorimpl Unpin for ParseIntErrorimpl Unpin for TryFromIntErrorimpl Unpin for ParseBoolErrorimpl Unpin for AtomicBoolimpl Unpin for AtomicIsizeimpl Unpin for AtomicUsizeimpl Unpin for BarrierWaitResultimpl Unpin for WaitTimeoutResultimpl Unpin for FromSecsErrorimpl<'a> Unpin for CharSearcher<'a>impl<'a> Unpin for CharIndices<'a>impl<'a> Unpin for EncodeUtf16<'a>impl<'a> Unpin for EscapeDebug<'a>impl<'a> Unpin for EscapeDefault<'a>impl<'a> Unpin for EscapeUnicode<'a>impl<'a> Unpin for SplitAsciiWhitespace<'a>impl<'a> Unpin for SplitWhitespace<'a>impl<'a, 'b> Unpin for DebugStruct<'a, 'b> where
'b: 'a, impl<'a, 'b> Unpin for DebugTuple<'a, 'b> where
'b: 'a, impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>impl<'a, 'b> Unpin for StrSearcher<'a, 'b>impl<'a, F> Unpin for CharPredicateSearcher<'a, F> where
F: Unpin, impl<'a, K, V> Unpin for OccupiedEntry<'a, K, V>impl<'a, K, V> Unpin for OccupiedError<'a, K, V> where
V: Unpin, impl<'a, K, V> Unpin for VacantEntry<'a, K, V> where
K: Unpin, impl<'a, K, V, F> Unpin for sp_std::collections::btree_map::DrainFilter<'a, K, V, F> where
F: Unpin, impl<'a, P> Unpin for MatchIndices<'a, P> where
<P as Pattern<'a>>::Searcher: Unpin, impl<'a, P> Unpin for RMatchIndices<'a, P> where
<P as Pattern<'a>>::Searcher: Unpin, impl<'a, P> Unpin for RSplitTerminator<'a, P> where
<P as Pattern<'a>>::Searcher: Unpin, impl<'a, P> Unpin for SplitInclusive<'a, P> where
<P as Pattern<'a>>::Searcher: Unpin, impl<'a, P> Unpin for SplitTerminator<'a, P> where
<P as Pattern<'a>>::Searcher: Unpin, impl<'a, T> Unpin for Difference<'a, T>impl<'a, T> Unpin for Intersection<'a, T>impl<'a, T> Unpin for SymmetricDifference<'a, T>impl<'a, T> Unpin for ChunksExact<'a, T>impl<'a, T> Unpin for ChunksExactMut<'a, T>impl<'a, T> Unpin for RChunksExact<'a, T>impl<'a, T> Unpin for RChunksExactMut<'a, T>impl<'a, T> Unpin for RChunksMut<'a, T>impl<'a, T, F> Unpin for sp_std::collections::btree_set::DrainFilter<'a, T, F> where
F: Unpin, impl<'a, T, F, A> Unpin for sp_std::vec::DrainFilter<'a, T, F, A> where
F: Unpin, impl<'a, T, P> Unpin for GroupByMut<'a, T, P> where
P: Unpin, impl<'a, T, P> Unpin for RSplitNMut<'a, T, P> where
P: Unpin, impl<'a, T, const N: usize> Unpin for ArrayChunks<'a, T, N>impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>impl<'a, T: ?Sized> Unpin for MutexGuard<'a, T>impl<'a, T: ?Sized> Unpin for RwLockReadGuard<'a, T>impl<'a, T: ?Sized> Unpin for RwLockWriteGuard<'a, T>impl<B, C> Unpin for ControlFlow<B, C> where
B: Unpin,
C: Unpin, impl<F> Unpin for RepeatWith<F> where
F: Unpin, impl<H> Unpin for BuildHasherDefault<H> where
H: Unpin, impl<I> Unpin for Flatten<I> where
I: Unpin,
<<I as Iterator>::Item as IntoIterator>::IntoIter: Unpin, impl<I, U, F> Unpin for FlatMap<I, U, F> where
F: Unpin,
I: Unpin,
<U as IntoIterator>::IntoIter: Unpin, impl<Idx> Unpin for RangeInclusive<Idx> where
Idx: Unpin, impl<Idx> Unpin for RangeToInclusive<Idx> where
Idx: Unpin, impl<K, V> Unpin for IntoValues<K, V>impl<T> Unpin for TryLockError<T> where
T: Unpin, impl<T> Unpin for TrySendError<T> where
T: Unpin, impl<T> Unpin for Discriminant<T>impl<T> Unpin for SyncSender<T>impl<T> Unpin for PoisonError<T> where
T: Unpin, impl<T> Unpin for MaybeUninit<T> where
T: Unpin, impl<T, F> Unpin for Successors<T, F> where
F: Unpin,
T: Unpin, impl<T: ?Sized> Unpin for UnsafeCell<T> where
T: Unpin, impl<T: ?Sized> Unpin for ManuallyDrop<T> where
T: Unpin, impl<T: ?Sized> Unpin for PhantomData<T> where
T: Unpin, impl<Y, R> Unpin for GeneratorState<Y, R> where
R: Unpin,
Y: Unpin,