Skip to main content

Unpin

Trait Unpin 

1.33.0 ยท Source
pub auto trait Unpin { }
Expand description

Types that do not require any pinning guarantees.

For information on what โ€œpinningโ€ is, see the pin module documentation.

Implementing the Unpin trait for T expresses the fact that T is pinning-agnostic: it shall not expose nor rely on any pinning guarantees. This, in turn, means that a Pin-wrapped pointer to such a type can feature a fully unrestricted API. In other words, if T: Unpin, a value of type T will not be bound by the invariants which pinning otherwise offers, even when โ€œpinnedโ€ by a Pin<Ptr> pointing at it. When a value of type T is pointed at by a Pin<Ptr>, Pin will not restrict access to the pointee value like it normally would, thus allowing the user to do anything that they normally could with a non-Pin-wrapped Ptr to that value.

The idea of this trait is to alleviate the reduced ergonomics of APIs that require the use of Pin for soundness for some types, but which also want to be used by other types that donโ€™t care about pinning. The prime example of such an API is Future::poll. There are many Future types that donโ€™t care about pinning. These futures can implement Unpin and therefore get around the pinning related restrictions in the API, while still allowing the subset of Futures which do require pinning to be implemented soundly.

For more discussion on the consequences of Unpin within the wider scope of the pinning system, see the section about Unpin in the pin module.

Unpin has no consequence at all for non-pinned data. In particular, mem::replace happily moves !Unpin data, which would be immovable when pinned (mem::replace works for any &mut T, not just when T: Unpin).

However, you cannot use mem::replace on !Unpin data which is pinned by being wrapped inside a Pin<Ptr> pointing at it. This is because you cannot (safely) use a Pin<Ptr> to get a &mut T to its pointee value, which you would need to call mem::replace, 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. The compiler is free to take the conservative stance of marking types as Unpin so long as all of the types that compose its fields are also Unpin. This is because if a type implements Unpin, then it is unsound for that typeโ€™s implementation to rely on pinning-related guarantees for soundness, even when viewed through a โ€œpinningโ€ pointer! It is the responsibility of the implementor of a type that relies upon pinning for soundness to ensure that type is not marked as Unpin by adding PhantomPinned field. For more details, see the pin module docs.

Dyn Compatibilityยง

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementorsยง

1.33.0 ยท Sourceยง

impl !Unpin for PhantomPinned

Sourceยง

impl Unpin for LocalWaker

1.36.0 ยท Sourceยง

impl Unpin for Waker

Sourceยง

impl<Dyn> Unpin for DynMetadata<Dyn>
where Dyn: ?Sized,

1.64.0 ยท Sourceยง

impl<F> Unpin for PollFn<F>
where F: Unpin,

Sourceยง

impl<I> Unpin for FromIter<I>

1.33.0 ยท Sourceยง

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, T: ?Sized,

1.33.0 ยท Sourceยง

impl<T, A> Unpin for Box<T, A>
where A: Allocator, T: ?Sized,

1.33.0 ยท Sourceยง

impl<T, A> Unpin for Rc<T, A>
where A: Allocator, T: ?Sized,

Sourceยง

impl<T, A> Unpin for UniqueArc<T, A>
where A: Allocator, T: ?Sized,

Sourceยง

impl<T, A> Unpin for UniqueRc<T, A>
where A: Allocator, T: ?Sized,

Sourceยง

impl<T> !Unpin for UnsafePinned<T>
where T: ?Sized,

When this type is used, that almost certainly means safe APIs need to use pinning to avoid the aliases from becoming invalidated. Therefore letโ€™s mark this as !Unpin. You can always opt back in to Unpin with an impl block, provided your API is still sound while unpinned.

1.33.0 ยท Sourceยง

impl<T> Unpin for &T
where T: ?Sized,

1.33.0 ยท Sourceยง

impl<T> Unpin for &mut T
where T: ?Sized,

Sourceยง

impl<T> Unpin for *const T is !null
where T: ?Sized,

1.38.0 ยท Sourceยง

impl<T> Unpin for *const T
where T: ?Sized,

1.38.0 ยท Sourceยง

impl<T> Unpin for *mut T
where T: ?Sized,

1.28.0 ยท Sourceยง

impl<T> Unpin for NonZero<T>

1.48.0 ยท Sourceยง

impl<T> Unpin for Ready<T>

Auto implementorsยง

ยง

impl Unpin for Abi

ยง

impl Unpin for AccessError

ยง

impl Unpin for AddrParseError

ยง

impl Unpin for std::mem::Alignment

ยง

impl Unpin for std::fmt::Alignment

ยง

impl Unpin for AllocError

ยง

impl Unpin for AncillaryError

ยง

impl Unpin for Args

ยง

impl Unpin for ArgsOs

ยง

impl Unpin for Array

ยง

impl Unpin for AsciiChar

ยง

impl Unpin for Assume

ยง

impl Unpin for AtomicOrdering

ยง

impl Unpin for Backtrace

ยง

impl Unpin for BacktraceFrame

ยง

impl Unpin for BacktraceStatus

ยง

impl Unpin for BacktraceStyle

ยง

impl Unpin for Barrier

ยง

impl Unpin for BarrierWaitResult

ยง

impl Unpin for BasicBlock

ยง

impl Unpin for BorrowError

ยง

impl Unpin for BorrowMutError

ยง

impl Unpin for Builder

ยง

impl Unpin for ByteStr

ยง

impl Unpin for ByteString

ยง

impl Unpin for CStr

ยง

impl Unpin for CString

ยง

impl Unpin for CharCase

ยง

impl Unpin for CharTryFromError

ยง

impl Unpin for Child

ยง

impl Unpin for ChildStderr

ยง

impl Unpin for ChildStdin

ยง

impl Unpin for ChildStdout

ยง

impl Unpin for Command

ยง

impl Unpin for CommandResolvedEnvs

ยง

impl Unpin for std::sync::nonpoison::Condvar

ยง

impl Unpin for std::sync::Condvar

ยง

impl Unpin for Const

ยง

impl Unpin for DebugAsHex

ยง

impl Unpin for DecodeUtf16Error

ยง

impl Unpin for DefaultHasher

ยง

impl Unpin for Dir

ยง

impl Unpin for DirBuilder

ยง

impl Unpin for DirEntry

ยง

impl Unpin for Duration

ยง

impl Unpin for DynTrait

ยง

impl Unpin for DynTraitPredicate

ยง

impl Unpin for std::io::Empty

ยง

impl Unpin for std::io::Error

ยง

impl Unpin for std::fmt::Error

ยง

impl Unpin for ErrorKind

ยง

impl Unpin for std::char::EscapeDebug

ยง

impl Unpin for std::ascii::EscapeDefault

ยง

impl Unpin for std::char::EscapeDefault

ยง

impl Unpin for std::char::EscapeUnicode

ยง

impl Unpin for ExitCode

ยง

impl Unpin for ExitStatus

ยง

impl Unpin for ExitStatusError

ยง

impl Unpin for FieldId

ยง

impl Unpin for File

ยง

impl Unpin for FileTimes

ยง

impl Unpin for FileType

ยง

impl Unpin for FnPtr

ยง

impl Unpin for FormattingOptions

ยง

impl Unpin for FpCategory

ยง

impl Unpin for FromBytesUntilNulError

ยง

impl Unpin for FromBytesWithNulError

ยง

impl Unpin for FromUtf8Error

ยง

impl Unpin for FromUtf16Error

ยง

impl Unpin for FromVecWithNulError

ยง

impl Unpin for Generic

ยง

impl Unpin for GenericType

ยง

impl Unpin for GetDisjointMutError

ยง

impl Unpin for Global

ยง

impl Unpin for HandleOrInvalid

ยง

impl Unpin for HandleOrNull

ยง

impl Unpin for Infallible

ยง

impl Unpin for Instant

ยง

impl Unpin for IntErrorKind

ยง

impl Unpin for IntoChars

ยง

impl Unpin for IntoIncoming

ยง

impl Unpin for IntoStringError

ยง

impl Unpin for InvalidHandleError

ยง

impl Unpin for IpAddr

ยง

impl Unpin for Ipv4Addr

ยง

impl Unpin for Ipv6Addr

ยง

impl Unpin for Ipv6MulticastScope

ยง

impl Unpin for JoinPathsError

ยง

impl Unpin for Layout

ยง

impl Unpin for LayoutError

ยง

impl Unpin for Lifetime

ยง

impl Unpin for Locality

ยง

impl Unpin for Metadata

ยง

impl Unpin for NormalizeError

ยง

impl Unpin for NulError

ยง

impl Unpin for NullHandleError

ยง

impl Unpin for std::sync::Once

ยง

impl Unpin for OnceState

ยง

impl Unpin for OneSidedRangeBound

ยง

impl Unpin for OpenOptions

ยง

impl Unpin for std::sync::atomic::Ordering

ยง

impl Unpin for std::cmp::Ordering

ยง

impl Unpin for OsStr

ยง

impl Unpin for OsString

ยง

impl Unpin for Output

ยง

impl Unpin for OwnedFd

ยง

impl Unpin for OwnedHandle

ยง

impl Unpin for OwnedSocket

ยง

impl Unpin for ParseBoolError

ยง

impl Unpin for ParseCharError

ยง

impl Unpin for ParseFloatError

ยง

impl Unpin for ParseIntError

ยง

impl Unpin for Path

ยง

impl Unpin for PathBuf

ยง

impl Unpin for Permissions

ยง

impl Unpin for PidFd

ยง

impl Unpin for PipeReader

ยง

impl Unpin for PipeWriter

ยง

impl Unpin for Pointer

ยง

impl Unpin for RandomState

ยง

impl Unpin for RangeFull

ยง

impl Unpin for RawWaker

ยง

impl Unpin for RawWakerVTable

ยง

impl Unpin for ReadDir

ยง

impl Unpin for RecvError

ยง

impl Unpin for std::sync::mpsc::RecvTimeoutError

ยง

impl Unpin for Reference

ยง

impl Unpin for std::io::Repeat

ยง

impl Unpin for ReturnToArg

ยง

impl Unpin for SearchStep

ยง

impl Unpin for SeekFrom

ยง

impl Unpin for Shutdown

ยง

impl Unpin for Sign

ยง

impl Unpin for SimdAlign

ยง

impl Unpin for Sink

ยง

impl Unpin for SipHasher

ยง

impl Unpin for Slice

ยง

impl Unpin for std::net::SocketAddr

ยง

impl Unpin for std::os::unix::net::SocketAddr

ยง

impl Unpin for std::os::windows::net::SocketAddr

ยง

impl Unpin for SocketAddrV4

ยง

impl Unpin for SocketAddrV6

ยง

impl Unpin for SocketCred

ยง

impl Unpin for Stderr

ยง

impl Unpin for Stdin

ยง

impl Unpin for Stdio

ยง

impl Unpin for Stdout

ยง

impl Unpin for Str

ยง

impl Unpin for String

ยง

impl Unpin for StripPrefixError

ยง

impl Unpin for System

ยง

impl Unpin for SystemRng

ยง

impl Unpin for SystemTime

ยง

impl Unpin for SystemTimeError

ยง

impl Unpin for TcpListener

ยง

impl Unpin for TcpStream

ยง

impl Unpin for Thread

ยง

impl Unpin for ThreadId

ยง

impl Unpin for ToCasefold

ยง

impl Unpin for ToLowercase

ยง

impl Unpin for ToTitlecase

ยง

impl Unpin for ToUppercase

ยง

impl Unpin for Trait

ยง

impl Unpin for TryFromCharError

ยง

impl Unpin for TryFromFloatSecsError

ยง

impl Unpin for TryFromIntError

ยง

impl Unpin for TryFromSliceError

ยง

impl Unpin for std::fs::TryLockError

ยง

impl Unpin for std::sync::mpsc::TryRecvError

ยง

impl Unpin for TryReserveError

ยง

impl Unpin for TryReserveErrorKind

ยง

impl Unpin for Type

ยง

impl Unpin for TypeId

ยง

impl Unpin for TypeKind

ยง

impl Unpin for UCred

ยง

impl Unpin for UdpSocket

ยง

impl Unpin for UnixDatagram

ยง

impl Unpin for std::os::unix::net::UnixListener

ยง

impl Unpin for std::os::windows::net::UnixListener

ยง

impl Unpin for std::os::unix::net::UnixStream

ยง

impl Unpin for std::os::windows::net::UnixStream

ยง

impl Unpin for UnorderedKeyError

ยง

impl Unpin for UnwindActionArg

ยง

impl Unpin for UnwindTerminateReason

ยง

impl Unpin for Utf8Error

ยง

impl Unpin for VarError

ยง

impl Unpin for VariantId

ยง

impl Unpin for Vars

ยง

impl Unpin for VarsOs

ยง

impl Unpin for WaitTimeoutResult

ยง

impl Unpin for WouldBlock

ยง

impl Unpin for WriterPanicked

ยง

impl Unpin for XdgDirsIter

ยง

impl Unpin for c_void

ยง

impl Unpin for stat

ยง

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>
where <MultiCharEqPattern<&'b [char; N]> as Pattern>::Searcher<'a>: Unpin,

ยง

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

ยง

impl<'a, 'b> Unpin for DebugList<'a, 'b>

ยง

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

ยง

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

ยง

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

ยง

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

ยง

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

ยง

impl<'a, A> Unpin for std::option::Iter<'a, A>
where Item<&'a A>: Unpin,

ยง

impl<'a, A> Unpin for std::option::IterMut<'a, A>
where Item<&'a mut A>: Unpin,

ยง

impl<'a, B> Unpin for Cow<'a, B>
where &'a B: Unpin, <B as ToOwned>::Owned: Unpin, B: ?Sized,

ยง

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where <MultiCharEqPattern<F> as Pattern>::Searcher<'a>: Unpin,

ยง

impl<'a, I, A> Unpin for std::collections::vec_deque::Splice<'a, I, A>
where Drain<'a, <I as Iterator>::Item, A>: Unpin, I: Unpin,

ยง

impl<'a, I, A> Unpin for std::vec::Splice<'a, I, A>
where Drain<'a, <I as Iterator>::Item, A>: Unpin, I: Unpin,

ยง

impl<'a, I> Unpin for ByRefSized<'a, I>

ยง

impl<'a, K, A> Unpin for std::collections::btree_set::CursorMut<'a, K, A>
where CursorMut<'a, K, SetValZST, A>: Unpin,

ยง

impl<'a, K, A> Unpin for std::collections::btree_set::CursorMutKey<'a, K, A>
where CursorMutKey<'a, K, SetValZST, A>: Unpin,

ยง

impl<'a, K, A> Unpin for std::collections::hash_set::Drain<'a, K, A>
where Drain<'a, K, A>: Unpin,

ยง

impl<'a, K, F, A> Unpin for std::collections::hash_set::ExtractIf<'a, K, F, A>
where ExtractIf<'a, K, F, A>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::btree_map::CursorMut<'a, K, V, A>
where CursorMutKey<'a, K, V, A>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::btree_map::CursorMutKey<'a, K, V, A>
where Option<Handle<NodeRef<Mut<'a>, K, V, Leaf>, Edge>>: Unpin, DormantMutRef<'a, Option<NodeRef<Owned, K, V, LeafOrInternal>>>: Unpin, &'a mut A: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::hash_map::Drain<'a, K, V, A>
where Drain<'a, K, V, A>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::hash_map::Entry<'a, K, V, A>
where OccupiedEntry<'a, K, V, A>: Unpin, VacantEntry<'a, K, V, A>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::btree_map::Entry<'a, K, V, A>
where VacantEntry<'a, K, V, A>: Unpin, OccupiedEntry<'a, K, V, A>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::btree_map::OccupiedEntry<'a, K, V, A>
where Handle<NodeRef<Mut<'a>, K, V, LeafOrInternal>, KV>: Unpin, DormantMutRef<'a, BTreeMap<K, V, A>>: Unpin, A: Unpin, PhantomData<&'a mut (K, V)>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::hash_map::OccupiedEntry<'a, K, V, A>
where RustcOccupiedEntry<'a, K, V, A>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::hash_map::OccupiedError<'a, K, V, A>
where OccupiedEntry<'a, K, V, A>: Unpin, K: Unpin, V: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::btree_map::OccupiedError<'a, K, V, A>
where OccupiedEntry<'a, K, V, A>: Unpin, K: Unpin, V: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::btree_map::VacantEntry<'a, K, V, A>
where K: Unpin, Option<Handle<NodeRef<Mut<'a>, K, V, Leaf>, Edge>>: Unpin, DormantMutRef<'a, BTreeMap<K, V, A>>: Unpin, A: Unpin, PhantomData<&'a mut (K, V)>: Unpin,

ยง

impl<'a, K, V, A> Unpin for std::collections::hash_map::VacantEntry<'a, K, V, A>
where RustcVacantEntry<'a, K, V, A>: Unpin,

ยง

impl<'a, K, V, F, A> Unpin for std::collections::hash_map::ExtractIf<'a, K, V, F, A>
where ExtractIf<'a, K, V, F, A>: Unpin,

ยง

impl<'a, K, V, R, F, A> Unpin for std::collections::btree_map::ExtractIf<'a, K, V, R, F, A>
where F: Unpin, ExtractIfInner<'a, K, V, R>: Unpin, A: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::btree_map::Cursor<'a, K, V>
where Option<Handle<NodeRef<Immut<'a>, K, V, Leaf>, Edge>>: Unpin, Option<&'a NodeRef<Owned, K, V, LeafOrInternal>>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::hash_map::Iter<'a, K, V>
where Iter<'a, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::btree_map::Iter<'a, K, V>
where LazyLeafRange<Immut<'a>, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::hash_map::IterMut<'a, K, V>
where IterMut<'a, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::btree_map::IterMut<'a, K, V>
where LazyLeafRange<ValMut<'a>, K, V>: Unpin, PhantomData<&'a mut (K, V)>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::hash_map::Keys<'a, K, V>
where Iter<'a, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::btree_map::Keys<'a, K, V>
where Iter<'a, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::btree_map::Range<'a, K, V>
where LeafRange<Immut<'a>, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for RangeMut<'a, K, V>
where LeafRange<ValMut<'a>, K, V>: Unpin, PhantomData<&'a mut (K, V)>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::hash_map::Values<'a, K, V>
where Iter<'a, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::btree_map::Values<'a, K, V>
where Iter<'a, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::hash_map::ValuesMut<'a, K, V>
where IterMut<'a, K, V>: Unpin,

ยง

impl<'a, K, V> Unpin for std::collections::btree_map::ValuesMut<'a, K, V>
where IterMut<'a, K, V>: Unpin,

ยง

impl<'a, K> Unpin for std::collections::btree_set::Cursor<'a, K>
where Cursor<'a, K, SetValZST>: Unpin,

ยง

impl<'a, K> Unpin for std::collections::hash_set::Iter<'a, K>
where Iter<'a, K>: Unpin,

ยง

impl<'a, P> Unpin for MatchIndices<'a, P>
where MatchIndicesInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for Matches<'a, P>
where MatchesInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for RMatchIndices<'a, P>
where MatchIndicesInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for RMatches<'a, P>
where MatchesInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for std::str::RSplit<'a, P>
where SplitInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for std::str::RSplitN<'a, P>
where SplitNInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for RSplitTerminator<'a, P>
where SplitInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for std::str::Split<'a, P>
where SplitInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for std::str::SplitInclusive<'a, P>
where SplitInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for std::str::SplitN<'a, P>
where SplitNInternal<'a, P>: Unpin,

ยง

impl<'a, P> Unpin for SplitTerminator<'a, P>
where SplitInternal<'a, P>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::linked_list::Cursor<'a, T, A>
where Option<NonNull<Node<T>>>: Unpin, &'a LinkedList<T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::linked_list::CursorMut<'a, T, A>
where Option<NonNull<Node<T>>>: Unpin, &'a mut LinkedList<T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::btree_set::Difference<'a, T, A>
where DifferenceInner<'a, T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::binary_heap::Drain<'a, T, A>
where Drain<'a, T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::vec::Drain<'a, T, A>
where Iter<'a, T>: Unpin, NonNull<Vec<T, A>>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::vec_deque::Drain<'a, T, A>

ยง

impl<'a, T, A> Unpin for DrainSorted<'a, T, A>
where &'a mut BinaryHeap<T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::btree_set::Entry<'a, T, A>
where OccupiedEntry<'a, T, A>: Unpin, VacantEntry<'a, T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::btree_set::Intersection<'a, T, A>
where IntersectionInner<'a, T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::btree_set::OccupiedEntry<'a, T, A>
where OccupiedEntry<'a, T, SetValZST, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::binary_heap::PeekMut<'a, T, A>
where &'a mut BinaryHeap<T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::vec::PeekMut<'a, T, A>
where &'a mut Vec<T, A>: Unpin,

ยง

impl<'a, T, A> Unpin for std::collections::btree_set::VacantEntry<'a, T, A>
where VacantEntry<'a, T, SetValZST, A>: Unpin,

ยง

impl<'a, T, F, A> Unpin for std::collections::linked_list::ExtractIf<'a, T, F, A>
where &'a mut LinkedList<T, A>: Unpin, Option<NonNull<Node<T>>>: Unpin, F: Unpin,

ยง

impl<'a, T, F, A> Unpin for std::vec::ExtractIf<'a, T, F, A>
where &'a mut Vec<T, A>: Unpin, F: Unpin,

ยง

impl<'a, T, F, A> Unpin for std::collections::vec_deque::ExtractIf<'a, T, F, A>
where &'a mut VecDeque<T, A>: Unpin, F: Unpin,

ยง

impl<'a, T, P> Unpin for ChunkBy<'a, T, P>
where &'a [T]: Unpin, P: Unpin,

ยง

impl<'a, T, P> Unpin for ChunkByMut<'a, T, P>
where &'a mut [T]: Unpin, P: Unpin,

ยง

impl<'a, T, P> Unpin for std::slice::RSplit<'a, T, P>
where Split<'a, T, P>: Unpin,

ยง

impl<'a, T, P> Unpin for RSplitMut<'a, T, P>
where SplitMut<'a, T, P>: Unpin,

ยง

impl<'a, T, P> Unpin for std::slice::RSplitN<'a, T, P>
where GenericSplitN<RSplit<'a, T, P>>: Unpin,

ยง

impl<'a, T, P> Unpin for RSplitNMut<'a, T, P>
where GenericSplitN<RSplitMut<'a, T, P>>: Unpin,

ยง

impl<'a, T, P> Unpin for std::slice::Split<'a, T, P>
where &'a [T]: Unpin, P: Unpin,

ยง

impl<'a, T, P> Unpin for std::slice::SplitInclusive<'a, T, P>
where &'a [T]: Unpin, P: Unpin,

ยง

impl<'a, T, P> Unpin for SplitInclusiveMut<'a, T, P>
where &'a mut [T]: Unpin, P: Unpin,

ยง

impl<'a, T, P> Unpin for SplitMut<'a, T, P>
where &'a mut [T]: Unpin, P: Unpin,

ยง

impl<'a, T, P> Unpin for std::slice::SplitN<'a, T, P>
where GenericSplitN<Split<'a, T, P>>: Unpin,

ยง

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where GenericSplitN<SplitMut<'a, T, P>>: Unpin,

ยง

impl<'a, T, R, F, A> Unpin for std::collections::btree_set::ExtractIf<'a, T, R, F, A>
where F: Unpin, ExtractIfInner<'a, T, SetValZST, R>: Unpin, A: Unpin,

ยง

impl<'a, T, S, A> Unpin for std::collections::hash_set::Difference<'a, T, S, A>
where Iter<'a, T>: Unpin, &'a HashSet<T, S, A>: Unpin,

ยง

impl<'a, T, S, A> Unpin for std::collections::hash_set::Entry<'a, T, S, A>
where OccupiedEntry<'a, T, S, A>: Unpin, VacantEntry<'a, T, S, A>: Unpin,

ยง

impl<'a, T, S, A> Unpin for std::collections::hash_set::Intersection<'a, T, S, A>
where Iter<'a, T>: Unpin, &'a HashSet<T, S, A>: Unpin,

ยง

impl<'a, T, S, A> Unpin for std::collections::hash_set::OccupiedEntry<'a, T, S, A>
where OccupiedEntry<'a, T, S, A>: Unpin,

ยง

impl<'a, T, S, A> Unpin for std::collections::hash_set::SymmetricDifference<'a, T, S, A>
where Chain<Difference<'a, T, S, A>, Difference<'a, T, S, A>>: Unpin,

ยง

impl<'a, T, S, A> Unpin for std::collections::hash_set::Union<'a, T, S, A>
where Chain<Iter<'a, T>, Difference<'a, T, S, A>>: Unpin,

ยง

impl<'a, T, S, A> Unpin for std::collections::hash_set::VacantEntry<'a, T, S, A>
where VacantEntry<'a, T, S, A>: Unpin,

ยง

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>
where &'a [T]: Unpin,

ยง

impl<'a, T> Unpin for BorrowedCursor<'a, T>

ยง

impl<'a, T> Unpin for Chunks<'a, T>
where &'a [T]: Unpin,

ยง

impl<'a, T> Unpin for ChunksExact<'a, T>
where &'a [T]: Unpin,

ยง

impl<'a, T> Unpin for ChunksExactMut<'a, T>

ยง

impl<'a, T> Unpin for ChunksMut<'a, T>

ยง

impl<'a, T> Unpin for std::sync::mpmc::Iter<'a, T>
where &'a Receiver<T>: Unpin,

ยง

impl<'a, T> Unpin for std::sync::mpsc::Iter<'a, T>
where &'a Receiver<T>: Unpin,

ยง

impl<'a, T> Unpin for std::collections::binary_heap::Iter<'a, T>
where Iter<'a, T>: Unpin,

ยง

impl<'a, T> Unpin for std::collections::vec_deque::Iter<'a, T>
where Iter<'a, T>: Unpin,

ยง

impl<'a, T> Unpin for std::collections::btree_set::Iter<'a, T>
where Keys<'a, T, SetValZST>: Unpin,

ยง

impl<'a, T> Unpin for std::slice::Iter<'a, T>

ยง

impl<'a, T> Unpin for std::result::Iter<'a, T>
where Option<&'a T>: Unpin,

ยง

impl<'a, T> Unpin for std::collections::linked_list::Iter<'a, T>
where Option<NonNull<Node<T>>>: Unpin, PhantomData<&'a Node<T>>: Unpin,

ยง

impl<'a, T> Unpin for std::collections::vec_deque::IterMut<'a, T>
where IterMut<'a, T>: Unpin,

ยง

impl<'a, T> Unpin for std::slice::IterMut<'a, T>

ยง

impl<'a, T> Unpin for std::result::IterMut<'a, T>

ยง

impl<'a, T> Unpin for std::collections::linked_list::IterMut<'a, T>
where Option<NonNull<Node<T>>>: Unpin, PhantomData<&'a mut Node<T>>: Unpin,

ยง

impl<'a, T> Unpin for std::sync::nonpoison::MappedMutexGuard<'a, T>

ยง

impl<'a, T> Unpin for std::sync::MappedMutexGuard<'a, T>

ยง

impl<'a, T> Unpin for std::sync::nonpoison::MutexGuard<'a, T>
where &'a Mutex<T>: Unpin, T: ?Sized,

ยง

impl<'a, T> Unpin for std::sync::MutexGuard<'a, T>
where &'a Mutex<T>: Unpin, T: ?Sized,

ยง

impl<'a, T> Unpin for RChunks<'a, T>
where &'a [T]: Unpin,

ยง

impl<'a, T> Unpin for RChunksExact<'a, T>
where &'a [T]: Unpin,

ยง

impl<'a, T> Unpin for RChunksExactMut<'a, T>
where *mut [T]: Unpin, &'a mut [T]: Unpin,

ยง

impl<'a, T> Unpin for RChunksMut<'a, T>

ยง

impl<'a, T> Unpin for std::collections::btree_set::Range<'a, T>
where Range<'a, T, SetValZST>: Unpin,

ยง

impl<'a, T> Unpin for ReentrantLockGuard<'a, T>
where &'a ReentrantLock<T>: Unpin, T: ?Sized,

ยง

impl<'a, T> Unpin for std::collections::btree_set::SymmetricDifference<'a, T>
where MergeIterInner<Iter<'a, T>>: Unpin,

ยง

impl<'a, T> Unpin for std::sync::mpmc::TryIter<'a, T>
where &'a Receiver<T>: Unpin,

ยง

impl<'a, T> Unpin for std::sync::mpsc::TryIter<'a, T>
where &'a Receiver<T>: Unpin,

ยง

impl<'a, T> Unpin for std::collections::btree_set::Union<'a, T>
where MergeIterInner<Iter<'a, T>>: Unpin,

ยง

impl<'a, T> Unpin for Windows<'a, T>
where &'a [T]: Unpin,

ยง

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>
where <MultiCharEqPattern<[char; N]> as Pattern>::Searcher<'a>: Unpin,

ยง

impl<'a> !Unpin for Request<'a>

ยง

impl<'a> Unpin for Ancestors<'a>

ยง

impl<'a> Unpin for AncillaryData<'a>

ยง

impl<'a> Unpin for Arguments<'a>

ยง

impl<'a> Unpin for std::str::Bytes<'a>

ยง

impl<'a> Unpin for CharIndices<'a>

ยง

impl<'a> Unpin for CharSearcher<'a>

ยง

impl<'a> Unpin for Chars<'a>

ยง

impl<'a> Unpin for CommandArgs<'a>

ยง

impl<'a> Unpin for CommandEnvs<'a>

ยง

impl<'a> Unpin for Component<'a>

ยง

impl<'a> Unpin for Components<'a>

ยง

impl<'a> Unpin for Context<'a>

ยง

impl<'a> Unpin for ContextBuilder<'a>

ยง

impl<'a> Unpin for std::ffi::os_str::Display<'a>

ยง

impl<'a> Unpin for std::path::Display<'a>

ยง

impl<'a> Unpin for std::string::Drain<'a>

ยง

impl<'a> Unpin for EncodeUtf16<'a>

ยง

impl<'a> Unpin for EncodeWide<'a>

ยง

impl<'a> Unpin for EscapeAscii<'a>

ยง

impl<'a> Unpin for std::str::EscapeDebug<'a>

ยง

impl<'a> Unpin for std::str::EscapeDefault<'a>

ยง

impl<'a> Unpin for std::str::EscapeUnicode<'a>

ยง

impl<'a> Unpin for Formatter<'a>

ยง

impl<'a> Unpin for std::net::Incoming<'a>

ยง

impl<'a> Unpin for std::os::unix::net::Incoming<'a>

ยง

impl<'a> Unpin for std::os::windows::net::Incoming<'a>

ยง

impl<'a> Unpin for IoSlice<'a>

ยง

impl<'a> Unpin for IoSliceMut<'a>

ยง

impl<'a> Unpin for std::path::Iter<'a>

ยง

impl<'a> Unpin for std::str::Lines<'a>

ยง

impl<'a> Unpin for LinesAny<'a>

ยง

impl<'a> Unpin for Location<'a>

ยง

impl<'a> Unpin for Messages<'a>

ยง

impl<'a> Unpin for PanicHookInfo<'a>

ยง

impl<'a> Unpin for PhantomContravariantLifetime<'a>

ยง

impl<'a> Unpin for PhantomCovariantLifetime<'a>

ยง

impl<'a> Unpin for PhantomInvariantLifetime<'a>

ยง

impl<'a> Unpin for Prefix<'a>

ยง

impl<'a> Unpin for PrefixComponent<'a>

ยง

impl<'a> Unpin for ProcThreadAttributeList<'a>

ยง

impl<'a> Unpin for ProcThreadAttributeListBuilder<'a>

ยง

impl<'a> Unpin for ScmCredentials<'a>

ยง

impl<'a> Unpin for ScmRights<'a>

ยง

impl<'a> Unpin for SocketAncillary<'a>

ยง

impl<'a> Unpin for SplitAsciiWhitespace<'a>

ยง

impl<'a> Unpin for SplitPaths<'a>

ยง

impl<'a> Unpin for SplitWhitespace<'a>

ยง

impl<'a> Unpin for StderrLock<'a>

ยง

impl<'a> Unpin for StdinLock<'a>

ยง

impl<'a> Unpin for StdoutLock<'a>

ยง

impl<'a> Unpin for Utf8Chunk<'a>

ยง

impl<'a> Unpin for Utf8Chunks<'a>

ยง

impl<'a> Unpin for Utf8Pattern<'a>

ยง

impl<'a> Unpin for VaList<'a>

ยง

impl<'b, T> Unpin for Ref<'b, T>
where NonNull<T>: Unpin, T: ?Sized,

ยง

impl<'b, T> Unpin for RefMut<'b, T>

ยง

impl<'data, T> Unpin for BorrowedBuf<'data, T>
where &'data mut [MaybeUninit<T>]: Unpin,

ยง

impl<'fd> Unpin for BorrowedFd<'fd>

ยง

impl<'handle> Unpin for BorrowedHandle<'handle>

ยง

impl<'rwlock, T> Unpin for std::sync::nonpoison::MappedRwLockReadGuard<'rwlock, T>
where NonNull<T>: Unpin, T: ?Sized,

ยง

impl<'rwlock, T> Unpin for std::sync::MappedRwLockReadGuard<'rwlock, T>
where NonNull<T>: Unpin, T: ?Sized,

ยง

impl<'rwlock, T> Unpin for std::sync::nonpoison::MappedRwLockWriteGuard<'rwlock, T>

ยง

impl<'rwlock, T> Unpin for std::sync::MappedRwLockWriteGuard<'rwlock, T>

ยง

impl<'rwlock, T> Unpin for std::sync::nonpoison::RwLockReadGuard<'rwlock, T>
where NonNull<T>: Unpin, T: ?Sized,

ยง

impl<'rwlock, T> Unpin for std::sync::RwLockReadGuard<'rwlock, T>
where NonNull<T>: Unpin, T: ?Sized,

ยง

impl<'rwlock, T> Unpin for std::sync::nonpoison::RwLockWriteGuard<'rwlock, T>
where &'rwlock RwLock<T>: Unpin, T: ?Sized,

ยง

impl<'rwlock, T> Unpin for std::sync::RwLockWriteGuard<'rwlock, T>
where &'rwlock RwLock<T>: Unpin, T: ?Sized,

ยง

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

ยง

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>
where JoinInner<'scope, T>: Unpin,

ยง

impl<'socket> Unpin for BorrowedSocket<'socket>

ยง

impl<A, B> Unpin for std::iter::Chain<A, B>
where Option<A>: Unpin, Option<B>: Unpin,

ยง

impl<A, B> Unpin for Zip<A, B>
where A: Unpin, B: Unpin,

ยง

impl<A> Unpin for std::option::IntoIter<A>
where Item<A>: Unpin,

ยง

impl<A> Unpin for OptionFlatten<A>
where Option<A>: Unpin,

ยง

impl<A> Unpin for RangeFromIter<A>
where A: Unpin,

ยง

impl<A> Unpin for RangeInclusiveIter<A>

ยง

impl<A> Unpin for RangeIter<A>
where Range<A>: Unpin,

ยง

impl<A> Unpin for std::iter::Repeat<A>
where A: Unpin,

ยง

impl<A> Unpin for RepeatN<A>
where Option<RepeatNInner<A>>: Unpin,

ยง

impl<B, C> Unpin for ControlFlow<B, C>
where C: Unpin, B: Unpin,

ยง

impl<B> Unpin for std::io::Lines<B>
where B: Unpin,

ยง

impl<B> Unpin for std::io::Split<B>
where B: Unpin,

ยง

impl<E> Unpin for Report<E>
where E: Unpin,

ยง

impl<F> Unpin for std::iter::FromFn<F>
where F: Unpin,

ยง

impl<F> Unpin for std::fmt::FromFn<F>
where F: Unpin,

ยง

impl<F> Unpin for OnceWith<F>
where Option<F>: Unpin,

ยง

impl<F> Unpin for RepeatWith<F>
where F: Unpin,

ยง

impl<G> Unpin for FromCoroutine<G>
where G: Unpin,

ยง

impl<H> Unpin for BuildHasherDefault<H>
where PhantomData<fn() -> H>: Unpin,

ยง

impl<I, F, const N: usize> Unpin for MapWindows<I, F, N>
where F: Unpin, MapWindowsInner<I, N>: Unpin,

ยง

impl<I, F> Unpin for FilterMap<I, F>
where I: Unpin, F: Unpin,

ยง

impl<I, F> Unpin for Inspect<I, F>
where I: Unpin, F: Unpin,

ยง

impl<I, F> Unpin for Map<I, F>
where I: Unpin, F: Unpin,

ยง

impl<I, G> Unpin for IntersperseWith<I, G>
where G: Unpin, Option<<I as Iterator>::Item>: Unpin, I: Unpin,

ยง

impl<I, P> Unpin for Filter<I, P>
where I: Unpin, P: Unpin,

ยง

impl<I, P> Unpin for MapWhile<I, P>
where I: Unpin, P: Unpin,

ยง

impl<I, P> Unpin for SkipWhile<I, P>
where I: Unpin, P: Unpin,

ยง

impl<I, P> Unpin for TakeWhile<I, P>
where I: Unpin, P: Unpin,

ยง

impl<I, St, F> Unpin for Scan<I, St, F>
where I: Unpin, F: Unpin, St: Unpin,

ยง

impl<I, U, F> Unpin for FlatMap<I, U, F>
where FlattenCompat<Map<I, F>, <U as IntoIterator>::IntoIter>: Unpin,

ยง

impl<I, const N: usize> Unpin for ArrayChunks<I, N>
where I: Unpin, Option<IntoIter<<I as Iterator>::Item, N>>: Unpin,

ยง

impl<I> Unpin for Cloned<I>
where I: Unpin,

ยง

impl<I> Unpin for Copied<I>
where I: Unpin,

ยง

impl<I> Unpin for Cycle<I>
where I: Unpin,

ยง

impl<I> Unpin for DecodeUtf16<I>
where I: Unpin,

ยง

impl<I> Unpin for Enumerate<I>
where I: Unpin,

ยง

impl<I> Unpin for Flatten<I>
where FlattenCompat<I, <<I as Iterator>::Item as IntoIterator>::IntoIter>: Unpin,

ยง

impl<I> Unpin for Fuse<I>
where Option<I>: Unpin,

ยง

impl<I> Unpin for Intersperse<I>
where <I as Iterator>::Item: Sized + Unpin, Option<<I as Iterator>::Item>: Unpin, I: Unpin,

ยง

impl<I> Unpin for Peekable<I>
where I: Unpin, Option<Option<<I as Iterator>::Item>>: Unpin,

ยง

impl<I> Unpin for Skip<I>
where I: Unpin,

ยง

impl<I> Unpin for StepBy<I>
where I: Unpin,

ยง

impl<I> Unpin for std::iter::Take<I>
where I: Unpin,

ยง

impl<Idx> Unpin for std::ops::Range<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for std::range::Range<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for std::ops::RangeFrom<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for std::range::RangeFrom<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for std::ops::RangeInclusive<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for std::range::RangeInclusive<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for RangeTo<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for std::ops::RangeToInclusive<Idx>
where Idx: Unpin,

ยง

impl<Idx> Unpin for std::range::RangeToInclusive<Idx>
where Idx: Unpin,

ยง

impl<K, A> Unpin for std::collections::hash_set::IntoIter<K, A>
where IntoIter<K, A>: Unpin,

ยง

impl<K, V, A> Unpin for BTreeMap<K, V, A>
where Option<NodeRef<Owned, K, V, LeafOrInternal>>: Unpin, ManuallyDrop<A>: Unpin, PhantomData<Box<(K, V), A>>: Unpin,

ยง

impl<K, V, A> Unpin for std::collections::hash_map::IntoIter<K, V, A>
where IntoIter<K, V, A>: Unpin,

ยง

impl<K, V, A> Unpin for std::collections::btree_map::IntoIter<K, V, A>
where LazyLeafRange<Dying, K, V>: Unpin, A: Unpin,

ยง

impl<K, V, A> Unpin for std::collections::hash_map::IntoKeys<K, V, A>
where IntoIter<K, V, A>: Unpin,

ยง

impl<K, V, A> Unpin for std::collections::btree_map::IntoKeys<K, V, A>
where IntoIter<K, V, A>: Unpin,

ยง

impl<K, V, A> Unpin for std::collections::hash_map::IntoValues<K, V, A>
where IntoIter<K, V, A>: Unpin,

ยง

impl<K, V, A> Unpin for std::collections::btree_map::IntoValues<K, V, A>
where IntoIter<K, V, A>: Unpin,

ยง

impl<K, V, S, A> Unpin for HashMap<K, V, S, A>
where HashMap<K, V, S, A>: Unpin,

ยง

impl<P> Unpin for MaybeDangling<P>
where P: Unpin + ?Sized,

ยง

impl<Ptr> Unpin for Pin<Ptr>
where Ptr: Unpin,

ยง

impl<R> Unpin for BufReader<R>
where R: Unpin + ?Sized,

ยง

impl<R> Unpin for std::io::Bytes<R>
where R: Unpin,

ยง

impl<T, A> Unpin for BTreeSet<T, A>
where BTreeMap<T, SetValZST, A>: Unpin,

ยง

impl<T, A> Unpin for BinaryHeap<T, A>
where Vec<T, A>: Unpin,

ยง

impl<T, A> Unpin for std::collections::binary_heap::IntoIter<T, A>
where IntoIter<T, A>: Unpin,

ยง

impl<T, A> Unpin for std::collections::btree_set::IntoIter<T, A>
where IntoIter<T, SetValZST, A>: Unpin,

ยง

impl<T, A> Unpin for std::collections::linked_list::IntoIter<T, A>
where LinkedList<T, A>: Unpin,

ยง

impl<T, A> Unpin for std::vec::IntoIter<T, A>

ยง

impl<T, A> Unpin for std::collections::vec_deque::IntoIter<T, A>
where VecDeque<T, A>: Unpin,

ยง

impl<T, A> Unpin for IntoIterSorted<T, A>
where BinaryHeap<T, A>: Unpin,

ยง

impl<T, A> Unpin for LinkedList<T, A>
where Option<NonNull<Node<T>>>: Unpin, A: Unpin, PhantomData<Box<Node<T>, A>>: Unpin,

ยง

impl<T, A> Unpin for Vec<T, A>
where RawVec<T, A>: Unpin,

ยง

impl<T, A> Unpin for VecDeque<T, A>
where RawVec<T, A>: Unpin,

ยง

impl<T, A> Unpin for std::sync::Weak<T, A>
where NonNull<ArcInner<T>>: Unpin, A: Unpin, T: ?Sized,

ยง

impl<T, A> Unpin for std::rc::Weak<T, A>
where NonNull<RcInner<T>>: Unpin, A: Unpin, T: ?Sized,

ยง

impl<T, E> Unpin for Result<T, E>
where T: Unpin, E: Unpin,

ยง

impl<T, F> Unpin for DropGuard<T, F>

ยง

impl<T, F> Unpin for LazyCell<T, F>
where UnsafeCell<State<T, F>>: Unpin,

ยง

impl<T, F> Unpin for LazyLock<T, F>
where UnsafeCell<Data<T, F>>: Unpin,

ยง

impl<T, F> Unpin for Successors<T, F>
where Option<T>: Unpin, F: Unpin,

ยง

impl<T, S, A> Unpin for HashSet<T, S, A>
where HashSet<T, S, A>: Unpin,

ยง

impl<T, U> Unpin for std::io::Chain<T, U>
where T: Unpin, U: Unpin,

ยง

impl<T, const N: usize, A> Unpin for BoxedArrayIntoIter<T, N, A>
where IntoIter<T, A>: Unpin,

ยง

impl<T, const N: usize> Unpin for std::array::IntoIter<T, N>
where ManuallyDrop<PolymorphicIter<[MaybeUninit<T>; N]>>: Unpin,

ยง

impl<T, const N: usize> Unpin for Mask<T, N>
where Simd<T, N>: Unpin,

ยง

impl<T, const N: usize> Unpin for Simd<T, N>
where [T; N]: Unpin,

ยง

impl<T, const VARIANT: u32, const FIELD: u32> Unpin for FieldRepresentingType<T, VARIANT, FIELD>
where PhantomData<fn(T) -> T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for AssertUnwindSafe<T>
where T: Unpin,

ยง

impl<T> Unpin for Atomic<T>

ยง

impl<T> Unpin for Bound<T>
where T: Unpin,

ยง

impl<T> Unpin for Cell<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for Complex<T>
where T: Unpin,

ยง

impl<T> Unpin for CovariantUnsafeCell<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for std::io::Cursor<T>
where T: Unpin,

ยง

impl<T> Unpin for Discriminant<T>

ยง

impl<T> Unpin for std::iter::Empty<T>
where PhantomData<fn() -> T>: Unpin,

ยง

impl<T> Unpin for std::result::IntoIter<T>
where Option<T>: Unpin,

ยง

impl<T> Unpin for std::sync::mpmc::IntoIter<T>
where Receiver<T>: Unpin,

ยง

impl<T> Unpin for std::sync::mpsc::IntoIter<T>
where Receiver<T>: Unpin,

ยง

impl<T> Unpin for JoinHandle<T>
where JoinInner<'static, T>: Unpin,

ยง

impl<T> Unpin for LocalKey<T>
where fn(Option<&mut Option<T>>) -> *const T: Unpin,

ยง

impl<T> Unpin for ManuallyDrop<T>
where MaybeDangling<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for MaybeUninit<T>
where ManuallyDrop<T>: Unpin,

ยง

impl<T> Unpin for std::sync::nonpoison::Mutex<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for std::sync::Mutex<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for NonNull<T>
where *const T is !null: Unpin, T: ?Sized,

ยง

impl<T> Unpin for std::iter::Once<T>
where IntoIter<T>: Unpin,

ยง

impl<T> Unpin for OnceCell<T>
where UnsafeCell<Option<T>>: Unpin,

ยง

impl<T> Unpin for OnceLock<T>

ยง

impl<T> Unpin for Option<T>
where T: Unpin,

ยง

impl<T> Unpin for Pending<T>
where PhantomData<fn() -> T>: Unpin,

ยง

impl<T> Unpin for PhantomContravariant<T>
where PhantomData<fn(T)>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for PhantomCovariant<T>
where PhantomData<fn() -> T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for PhantomData<T>
where T: ?Sized,

ยง

impl<T> Unpin for PhantomInvariant<T>
where PhantomData<fn(T) -> T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for PoisonError<T>
where T: Unpin,

ยง

impl<T> Unpin for Poll<T>
where T: Unpin,

ยง

impl<T> Unpin for std::sync::mpsc::Receiver<T>
where Receiver<T>: Unpin,

ยง

impl<T> Unpin for std::sync::oneshot::Receiver<T>
where Receiver<T>: Unpin,

ยง

impl<T> Unpin for std::sync::mpmc::Receiver<T>
where ReceiverFlavor<T>: Unpin,

ยง

impl<T> Unpin for std::sync::oneshot::RecvTimeoutError<T>
where Receiver<T>: Unpin,

ยง

impl<T> Unpin for ReentrantLock<T>
where T: Unpin + ?Sized,

ยง

impl<T> Unpin for RefCell<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for Rev<T>
where T: Unpin,

ยง

impl<T> Unpin for Reverse<T>
where T: Unpin,

ยง

impl<T> Unpin for std::sync::nonpoison::RwLock<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for std::sync::RwLock<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for Saturating<T>
where T: Unpin,

ยง

impl<T> Unpin for SendError<T>
where T: Unpin,

ยง

impl<T> Unpin for SendTimeoutError<T>
where T: Unpin,

ยง

impl<T> Unpin for std::sync::mpsc::Sender<T>
where Sender<T>: Unpin,

ยง

impl<T> Unpin for std::sync::oneshot::Sender<T>
where Sender<T>: Unpin,

ยง

impl<T> Unpin for std::sync::mpmc::Sender<T>
where SenderFlavor<T>: Unpin,

ยง

impl<T> Unpin for SyncSender<T>
where Sender<T>: Unpin,

ยง

impl<T> Unpin for SyncUnsafeCell<T>
where UnsafeCell<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for SyncView<T>
where T: Unpin + ?Sized,

ยง

impl<T> Unpin for std::io::Take<T>
where T: Unpin,

ยง

impl<T> Unpin for ThinBox<T>
where PhantomData<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for TraitImpl<T>
where DynMetadata<T>: Unpin, T: ?Sized,

ยง

impl<T> Unpin for std::sync::TryLockError<T>
where PoisonError<T>: Unpin,

ยง

impl<T> Unpin for std::sync::oneshot::TryRecvError<T>
where Receiver<T>: Unpin,

ยง

impl<T> Unpin for TrySendError<T>
where T: Unpin,

ยง

impl<T> Unpin for UnsafeCell<T>
where T: Unpin + ?Sized,

ยง

impl<T> Unpin for Wrapping<T>
where T: Unpin,

ยง

impl<T> Unpin for Yeet<T>
where T: Unpin,

ยง

impl<W> Unpin for BufWriter<W>
where W: Unpin + ?Sized,

ยง

impl<W> Unpin for IntoInnerError<W>
where W: Unpin,

ยง

impl<W> Unpin for LineWriter<W>
where BufWriter<W>: Unpin, W: ?Sized,

ยง

impl<Y, R> Unpin for CoroutineState<Y, R>
where Y: Unpin, R: Unpin,