pub auto trait UnwindSafe { }
Expand description

A marker trait which represents “panic safe” types in Rust.

This trait is implemented by default for many types and behaves similarly in terms of inference of implementation to the Send and Sync traits. The purpose of this trait is to encode what types are safe to cross a catch_unwind boundary with no fear of unwind safety.

What is unwind safety?

In Rust a function can “return” early if it either panics or calls a function which transitively panics. This sort of control flow is not always anticipated, and has the possibility of causing subtle bugs through a combination of two critical components:

  1. A data structure is in a temporarily invalid state when the thread panics.
  2. This broken invariant is then later observed.

Typically in Rust, it is difficult to perform step (2) because catching a panic involves either spawning a thread (which in turn makes it difficult to later witness broken invariants) or using the catch_unwind function in this module. Additionally, even if an invariant is witnessed, it typically isn’t a problem in Rust because there are no uninitialized values (like in C or C++).

It is possible, however, for logical invariants to be broken in Rust, which can end up causing behavioral bugs. Another key aspect of unwind safety in Rust is that, in the absence of unsafe code, a panic cannot lead to memory unsafety.

That was a bit of a whirlwind tour of unwind safety, but for more information about unwind safety and how it applies to Rust, see an associated RFC.

What is UnwindSafe?

Now that we’ve got an idea of what unwind safety is in Rust, it’s also important to understand what this trait represents. As mentioned above, one way to witness broken invariants is through the catch_unwind function in this module as it allows catching a panic and then re-using the environment of the closure.

Simply put, a type T implements UnwindSafe if it cannot easily allow witnessing a broken invariant through the use of catch_unwind (catching a panic). This trait is an auto trait, so it is automatically implemented for many types, and it is also structurally composed (e.g., a struct is unwind safe if all of its components are unwind safe).

Note, however, that this is not an unsafe trait, so there is not a succinct contract that this trait is providing. Instead it is intended as more of a “speed bump” to alert users of catch_unwind that broken invariants may be witnessed and may need to be accounted for.

Who implements UnwindSafe?

Types such as &mut T and &RefCell<T> are examples which are not unwind safe. The general idea is that any mutable state which can be shared across catch_unwind is not unwind safe by default. This is because it is very easy to witness a broken invariant outside of catch_unwind as the data is simply accessed as usual.

Types like &Mutex<T>, however, are unwind safe because they implement poisoning by default. They still allow witnessing a broken invariant, but they already provide their own “speed bumps” to do so.

When should UnwindSafe be used?

It is not intended that most types or functions need to worry about this trait. It is only used as a bound on the catch_unwind function and as mentioned above, the lack of unsafe means it is mostly an advisory. The AssertUnwindSafe wrapper struct can be used to force this trait to be implemented for any closed over variables passed to catch_unwind.

Implementors§

source§

impl<T> !UnwindSafe for &mut Twhere T: ?Sized,

source§

impl<T> UnwindSafe for *const Twhere T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for *mut Twhere T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for &Twhere T: RefUnwindSafe + ?Sized,

1.25.0 · source§

impl<T> UnwindSafe for NonNull<T>where T: RefUnwindSafe + ?Sized,

source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

impl<T: RefUnwindSafe + ?Sized> UnwindSafe for Arc<T>

impl<T: RefUnwindSafe + ?Sized> UnwindSafe for Rc<T>

impl<K, V, A> UnwindSafe for BTreeMap<K, V, A>where A: UnwindSafe + Allocator + Clone, K: RefUnwindSafe, V: RefUnwindSafe,

impl<T> UnwindSafe for Sender<T>

impl<T> UnwindSafe for Receiver<T>

impl<T: ?Sized> UnwindSafe for RwLock<T>

impl<T> UnwindSafe for ReentrantMutex<T>

impl<T: UnwindSafe, F: UnwindSafe> UnwindSafe for LazyLock<T, F>

impl<K, V, S> UnwindSafe for HashMap<K, V, S>where K: UnwindSafe, V: UnwindSafe, S: UnwindSafe,

impl UnwindSafe for Once

impl<T: ?Sized> UnwindSafe for Mutex<T>

Auto implementors§

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for rustc_std_workspace_core::cmp::Ordering

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for c_void

§

impl UnwindSafe for rustc_std_workspace_core::fmt::Alignment

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Sign

§

impl UnwindSafe for Which

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for rustc_std_workspace_core::sync::atomic::Ordering

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for rustc_std_workspace_core::ascii::EscapeDefault

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for rustc_std_workspace_core::char::EscapeDebug

§

impl UnwindSafe for rustc_std_workspace_core::char::EscapeDefault

§

impl UnwindSafe for rustc_std_workspace_core::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for CStr

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for Error

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Number

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for NonZeroI8

§

impl UnwindSafe for NonZeroI16

§

impl UnwindSafe for NonZeroI32

§

impl UnwindSafe for NonZeroI64

§

impl UnwindSafe for NonZeroI128

§

impl UnwindSafe for NonZeroIsize

§

impl UnwindSafe for NonZeroU8

§

impl UnwindSafe for NonZeroU16

§

impl UnwindSafe for NonZeroU32

§

impl UnwindSafe for NonZeroU64

§

impl UnwindSafe for NonZeroU128

§

impl UnwindSafe for NonZeroUsize

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for rustc_std_workspace_core::ptr::Alignment

§

impl UnwindSafe for TimSortRun

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for Duration

§

impl UnwindSafe for TryFromFloatSecsError

§

impl<'a> !UnwindSafe for Demand<'a>

§

impl<'a> !UnwindSafe for Source<'a>

§

impl<'a> !UnwindSafe for Arguments<'a>

§

impl<'a> !UnwindSafe for Formatter<'a>

§

impl<'a> !UnwindSafe for PanicInfo<'a>

§

impl<'a> UnwindSafe for Part<'a>

§

impl<'a> UnwindSafe for Formatted<'a>

§

impl<'a> UnwindSafe for EscapeAscii<'a>

§

impl<'a> UnwindSafe for CharSearcher<'a>

§

impl<'a> UnwindSafe for Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for rustc_std_workspace_core::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for rustc_std_workspace_core::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for rustc_std_workspace_core::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for Lines<'a>

§

impl<'a> UnwindSafe for LinesAny<'a>

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

impl<'a> UnwindSafe for Utf8Chunk<'a>

§

impl<'a> UnwindSafe for Utf8Chunks<'a>

§

impl<'a> UnwindSafe for Context<'a>

§

impl<'a> UnwindSafe for Location<'a>

§

impl<'a, 'b> !UnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugTuple<'a, 'b>

§

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

§

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

§

impl<'a, 'b, const N: usize> UnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>

§

impl<'a, A> !UnwindSafe for rustc_std_workspace_core::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for rustc_std_workspace_core::option::Iter<'a, A>where A: RefUnwindSafe,

§

impl<'a, F> UnwindSafe for CharPredicateSearcher<'a, F>where F: UnwindSafe,

§

impl<'a, I> !UnwindSafe for ByRefSized<'a, I>

§

impl<'a, P> UnwindSafe for MatchIndices<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for Matches<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for RMatchIndices<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for RMatches<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for rustc_std_workspace_core::str::RSplit<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for rustc_std_workspace_core::str::RSplitN<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for RSplitTerminator<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for rustc_std_workspace_core::str::Split<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for rustc_std_workspace_core::str::SplitInclusive<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for rustc_std_workspace_core::str::SplitN<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for SplitTerminator<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, T> !UnwindSafe for rustc_std_workspace_core::result::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for ChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for ChunksMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustc_std_workspace_core::slice::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for RChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for RChunksMut<'a, T>

§

impl<'a, T> UnwindSafe for rustc_std_workspace_core::result::Iter<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for Chunks<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for ChunksExact<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustc_std_workspace_core::slice::Iter<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for RChunks<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for RChunksExact<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for Windows<'a, T>where T: RefUnwindSafe,

§

impl<'a, T, P> !UnwindSafe for GroupByMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for RSplitMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for RSplitNMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitInclusiveMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitNMut<'a, T, P>

§

impl<'a, T, P> UnwindSafe for GroupBy<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for rustc_std_workspace_core::slice::RSplit<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for rustc_std_workspace_core::slice::RSplitN<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for rustc_std_workspace_core::slice::Split<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for rustc_std_workspace_core::slice::SplitInclusive<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for rustc_std_workspace_core::slice::SplitN<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, const N: usize> !UnwindSafe for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> UnwindSafe for rustc_std_workspace_core::slice::ArrayChunks<'a, T, N>where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> UnwindSafe for ArrayWindows<'a, T, N>where T: RefUnwindSafe,

§

impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !UnwindSafe for Ref<'b, T>

§

impl<'b, T> !UnwindSafe for RefMut<'b, T>

§

impl<'f> !UnwindSafe for VaListImpl<'f>

§

impl<A> UnwindSafe for Repeat<A>where A: UnwindSafe,

§

impl<A> UnwindSafe for rustc_std_workspace_core::option::IntoIter<A>where A: UnwindSafe,

§

impl<A, B> UnwindSafe for Chain<A, B>where A: UnwindSafe, B: UnwindSafe,

§

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

§

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

§

impl<Dyn> !UnwindSafe for DynMetadata<Dyn>

§

impl<E, M> UnwindSafe for Capture<E, M>where E: UnwindSafe, M: UnwindSafe,

§

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

§

impl<F> UnwindSafe for FromFn<F>where F: UnwindSafe,

§

impl<F> UnwindSafe for OnceWith<F>where F: UnwindSafe,

§

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

§

impl<H> UnwindSafe for BuildHasherDefault<H>

§

impl<I> UnwindSafe for FromIter<I>where I: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I> UnwindSafe for Fuse<I>where I: UnwindSafe,

§

impl<I> UnwindSafe for Intersperse<I>where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

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

§

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

§

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

§

impl<I> UnwindSafe for Take<I>where I: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I, U, F> UnwindSafe for FlatMap<I, U, F>where F: UnwindSafe, I: UnwindSafe, <U as IntoIterator>::IntoIter: UnwindSafe,

§

impl<I, const N: usize> UnwindSafe for rustc_std_workspace_core::iter::ArrayChunks<I, N>where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<Idx> UnwindSafe for Range<Idx>where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeFrom<Idx>where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeInclusive<Idx>where Idx: UnwindSafe,

§

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

§

impl<Idx> UnwindSafe for RangeToInclusive<Idx>where Idx: UnwindSafe,

§

impl<P> UnwindSafe for Pin<P>where P: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for Wrapper<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for OnceCell<T>where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for Pending<T>

§

impl<T> UnwindSafe for Ready<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for Empty<T>

§

impl<T> UnwindSafe for Once<T>where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for Discriminant<T>where <T as DiscriminantKind>::Discriminant: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustc_std_workspace_core::result::IntoIter<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for AtomicPtr<T>where T: RefUnwindSafe,

§

impl<T> UnwindSafe for MaybeUninit<T>where T: UnwindSafe,

§

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

§

impl<T, F> UnwindSafe for LazyCell<T, F>where F: UnwindSafe, T: UnwindSafe,

§

impl<T, F> UnwindSafe for Successors<T, F>where F: UnwindSafe, T: UnwindSafe,

§

impl<T, const LANES: usize> UnwindSafe for Mask<T, LANES>where T: UnwindSafe,

§

impl<T, const N: usize> UnwindSafe for rustc_std_workspace_core::array::IntoIter<T, N>where T: UnwindSafe,

§

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

§

impl<T: ?Sized> UnwindSafe for Cell<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for RefCell<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for SyncUnsafeCell<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for UnsafeCell<T>where T: UnwindSafe,

§

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

§

impl<T: ?Sized> UnwindSafe for ManuallyDrop<T>where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for Exclusive<T>where T: UnwindSafe,

§

impl<Y, R> UnwindSafe for GeneratorState<Y, R>where R: UnwindSafe, Y: UnwindSafe,

§

impl<const LANES: usize> UnwindSafe for LaneCount<LANES>

§

impl<const N: usize> UnwindSafe for GetManyMutError<N>

impl<T, A> UnwindSafe for RawVec<T, A>where A: UnwindSafe, T: UnwindSafe,

impl<T: ?Sized> UnwindSafe for ThinBox<T>where T: UnwindSafe,

impl<H> UnwindSafe for WithHeader<H>where H: UnwindSafe,

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

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

impl<T, A> UnwindSafe for BinaryHeap<T, A>where A: UnwindSafe, T: UnwindSafe,

impl<'a, T, A = Global> !UnwindSafe for PeekMut<'a, T, A>

impl<'a, T, A = Global> !UnwindSafe for RebuildOnDrop<'a, T, A>

impl<'a, T> !UnwindSafe for Hole<'a, T>

impl<'a, T> UnwindSafe for Iter<'a, T>where T: RefUnwindSafe,

impl<T, A> UnwindSafe for IntoIter<T, A>where A: UnwindSafe, T: UnwindSafe + RefUnwindSafe,

impl<T, A> UnwindSafe for IntoIterSorted<T, A>where A: UnwindSafe, T: UnwindSafe,

impl<'a, T, A> UnwindSafe for Drain<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, A = Global> !UnwindSafe for DrainSorted<'a, T, A>

impl<K, V, I> UnwindSafe for MergeIter<K, V, I>where I: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

impl<'a, T> !UnwindSafe for DormantMutRef<'a, T>

impl<K, V, I> UnwindSafe for DedupSortedIter<K, V, I>where I: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

impl<'a, K, V, A = Global> !UnwindSafe for Entry<'a, K, V, A>

impl<'a, K, V, A = Global> !UnwindSafe for VacantEntry<'a, K, V, A>

impl<'a, K, V, A = Global> !UnwindSafe for OccupiedEntry<'a, K, V, A>

impl<'a, K, V, A = Global> !UnwindSafe for OccupiedError<'a, K, V, A>

impl<'a, K, V> UnwindSafe for Iter<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> !UnwindSafe for IterMut<'a, K, V>

impl<K, V, A> UnwindSafe for IntoIter<K, V, A>where A: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Keys<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Values<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> !UnwindSafe for ValuesMut<'a, K, V>

impl<K, V, A> UnwindSafe for IntoKeys<K, V, A>where A: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl<K, V, A> UnwindSafe for IntoValues<K, V, A>where A: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Range<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> !UnwindSafe for RangeMut<'a, K, V>

impl<'a, K, V, F, A = Global> !UnwindSafe for ExtractIf<'a, K, V, F, A>

impl<'a, K, V> !UnwindSafe for ExtractIfInner<'a, K, V>

impl<'a, K, V> UnwindSafe for Cursor<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V, A = Global> !UnwindSafe for CursorMut<'a, K, V, A>

impl<I> UnwindSafe for MergeIterInner<I>where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

impl<I> UnwindSafe for Peeked<I>where <I as Iterator>::Item: UnwindSafe,

impl<BorrowType, K, V> UnwindSafe for LeafRange<BorrowType, K, V>where BorrowType: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl<BorrowType, K, V> UnwindSafe for LazyLeafHandle<BorrowType, K, V>where BorrowType: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl<BorrowType, K, V> UnwindSafe for LazyLeafRange<BorrowType, K, V>where BorrowType: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl<BorrowType, K, V> UnwindSafe for Position<BorrowType, K, V>where BorrowType: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl UnwindSafe for Leaf

impl UnwindSafe for Owned

impl UnwindSafe for Dying

impl<'a> UnwindSafe for Immut<'a>

impl<'a> !UnwindSafe for Mut<'a>

impl<'a> !UnwindSafe for ValMut<'a>

impl UnwindSafe for KV

impl UnwindSafe for Edge

impl<K, V> UnwindSafe for LeafNode<K, V>where K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<BorrowType, K, V, Type> UnwindSafe for NodeRef<BorrowType, K, V, Type>where BorrowType: UnwindSafe, K: RefUnwindSafe, Type: UnwindSafe, V: RefUnwindSafe,

impl<Node, Type> UnwindSafe for Handle<Node, Type>where Node: UnwindSafe, Type: UnwindSafe,

impl<T> UnwindSafe for LeftOrRight<T>where T: UnwindSafe,

impl<'a, K, V> !UnwindSafe for BalancingContext<'a, K, V>

impl<Leaf, Internal> UnwindSafe for ForceResult<Leaf, Internal>where Internal: UnwindSafe, Leaf: UnwindSafe,

impl<'a, K, V, NodeType> !UnwindSafe for SplitResult<'a, K, V, NodeType>

impl<T> UnwindSafe for SearchBound<T>where T: UnwindSafe,

impl<BorrowType, K, V, FoundType, GoDownType> UnwindSafe for SearchResult<BorrowType, K, V, FoundType, GoDownType>where BorrowType: UnwindSafe, FoundType: UnwindSafe, GoDownType: UnwindSafe, K: RefUnwindSafe, V: RefUnwindSafe,

impl<T, A> UnwindSafe for BTreeSet<T, A>where A: UnwindSafe, T: RefUnwindSafe,

impl<'a, T> UnwindSafe for Iter<'a, T>where T: RefUnwindSafe,

impl<T, A> UnwindSafe for IntoIter<T, A>where A: UnwindSafe, T: RefUnwindSafe,

impl<'a, T> UnwindSafe for Range<'a, T>where T: RefUnwindSafe,

impl<'a, T, A> UnwindSafe for Difference<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, A> UnwindSafe for DifferenceInner<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T> UnwindSafe for SymmetricDifference<'a, T>where T: RefUnwindSafe,

impl<'a, T, A> UnwindSafe for Intersection<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, A> UnwindSafe for IntersectionInner<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T> UnwindSafe for Union<'a, T>where T: RefUnwindSafe,

impl<'a, T, F, A = Global> !UnwindSafe for ExtractIf<'a, T, F, A>

impl<T, A> UnwindSafe for LinkedList<T, A>where A: UnwindSafe, T: UnwindSafe + RefUnwindSafe,

impl<T> UnwindSafe for Node<T>where T: UnwindSafe + RefUnwindSafe,

impl<'a, T> UnwindSafe for Iter<'a, T>where T: RefUnwindSafe,

impl<'a, T> !UnwindSafe for IterMut<'a, T>

impl<T, A> UnwindSafe for IntoIter<T, A>where A: UnwindSafe, T: UnwindSafe + RefUnwindSafe,

impl<'a, T, A> UnwindSafe for Cursor<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, A = Global> !UnwindSafe for CursorMut<'a, T, A>

impl<'a, T, F, A = Global> !UnwindSafe for ExtractIf<'a, T, F, A>

impl<'a, T, A> UnwindSafe for Drain<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T> !UnwindSafe for IterMut<'a, T>

impl<T, A> UnwindSafe for IntoIter<T, A>where A: UnwindSafe, T: UnwindSafe,

impl<'a, T> UnwindSafe for Iter<'a, T>where T: RefUnwindSafe,

impl<T, A> UnwindSafe for VecDeque<T, A>where A: UnwindSafe, T: UnwindSafe,

impl<T: ?Sized> UnwindSafe for RcBox<T>where T: UnwindSafe,

impl<T> !UnwindSafe for Weak<T>

impl<'a> !UnwindSafe for WeakInner<'a>

impl<T> !UnwindSafe for UniqueRc<T>

impl<'a> UnwindSafe for Drain<'a>

impl<T: ?Sized> UnwindSafe for Weak<T>where T: RefUnwindSafe,

impl<T: ?Sized> UnwindSafe for ArcInner<T>where T: UnwindSafe,

impl<'a> UnwindSafe for WeakInner<'a>

impl<'a, T, F, A = Global> !UnwindSafe for ExtractIf<'a, T, F, A>

impl<'a, I, A> UnwindSafe for Splice<'a, I, A>where A: RefUnwindSafe, I: UnwindSafe, <I as Iterator>::Item: RefUnwindSafe,

impl<'a, T, A> UnwindSafe for Drain<'a, T, A>where A: RefUnwindSafe, T: RefUnwindSafe,

impl<T, A> UnwindSafe for IntoIter<T, A>where A: UnwindSafe, T: UnwindSafe + RefUnwindSafe,

impl<'a> !UnwindSafe for SetLenOnDrop<'a>

impl<T> UnwindSafe for InPlaceDrop<T>where T: RefUnwindSafe,

impl<T, A> UnwindSafe for Vec<T, A>where A: UnwindSafe, T: UnwindSafe,

impl UnwindSafe for U64x2

impl UnwindSafe for Name

impl UnwindSafe for Occur

impl UnwindSafe for Opt

impl UnwindSafe for Fail

impl UnwindSafe for Group

impl<T> UnwindSafe for Bucket<T>where T: RefUnwindSafe,

impl<T, A> UnwindSafe for RawTable<T, A>where A: UnwindSafe, T: UnwindSafe,

impl<A> UnwindSafe for RawTableInner<A>where A: UnwindSafe,

impl<T> UnwindSafe for RawIterRange<T>where T: RefUnwindSafe,

impl<T> UnwindSafe for RawIter<T>where T: RefUnwindSafe,

impl<T, A> UnwindSafe for RawIntoIter<T, A>where A: UnwindSafe, T: UnwindSafe + RefUnwindSafe,

impl<'a, T, A> UnwindSafe for RawDrain<'a, T, A>where A: UnwindSafe + RefUnwindSafe, T: UnwindSafe + RefUnwindSafe,

impl<T> UnwindSafe for RawIterHash<T>where T: UnwindSafe,

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

impl<'a, K, V> UnwindSafe for Iter<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> !UnwindSafe for IterMut<'a, K, V>

impl<K, V, A> UnwindSafe for IntoIter<K, V, A>where A: UnwindSafe, K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<K, V, A> UnwindSafe for IntoKeys<K, V, A>where A: UnwindSafe, K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<K, V, A> UnwindSafe for IntoValues<K, V, A>where A: UnwindSafe, K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Keys<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Values<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V, A> UnwindSafe for Drain<'a, K, V, A>where A: UnwindSafe + RefUnwindSafe, K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<'a, K, V, F, A = Global> !UnwindSafe for ExtractIf<'a, K, V, F, A>

impl<'a, K, V, A> !UnwindSafe for ExtractIfInner<'a, K, V, A>

impl<'a, K, V> !UnwindSafe for ValuesMut<'a, K, V>

impl<'a, K, V, S, A = Global> !UnwindSafe for RawEntryBuilderMut<'a, K, V, S, A>

impl<'a, K, V, S, A = Global> !UnwindSafe for RawEntryMut<'a, K, V, S, A>

impl<'a, K, V, S, A = Global> !UnwindSafe for RawOccupiedEntryMut<'a, K, V, S, A>

impl<'a, K, V, S, A = Global> !UnwindSafe for RawVacantEntryMut<'a, K, V, S, A>

impl<'a, K, V, S, A> UnwindSafe for RawEntryBuilder<'a, K, V, S, A>where A: RefUnwindSafe, K: RefUnwindSafe, S: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V, S, A = Global> !UnwindSafe for Entry<'a, K, V, S, A>

impl<'a, K, V, S = DefaultHashBuilder, A = Global> !UnwindSafe for OccupiedEntry<'a, K, V, S, A>

impl<'a, K, V, S = DefaultHashBuilder, A = Global> !UnwindSafe for VacantEntry<'a, K, V, S, A>

impl<'a, 'b, K, Q, V, S, A = Global> !UnwindSafe for EntryRef<'a, 'b, K, Q, V, S, A>

impl<'a, K, Q: ?Sized> UnwindSafe for KeyOrRef<'a, K, Q>where K: UnwindSafe, Q: RefUnwindSafe,

impl<'a, 'b, K, Q, V, S, A = Global> !UnwindSafe for OccupiedEntryRef<'a, 'b, K, Q, V, S, A>

impl<'a, 'b, K, Q, V, S, A = Global> !UnwindSafe for VacantEntryRef<'a, 'b, K, Q, V, S, A>

impl<'a, K, V, S, A = Global> !UnwindSafe for OccupiedError<'a, K, V, S, A>

impl<'a, K, V, A = Global> !UnwindSafe for RustcEntry<'a, K, V, A>

impl<'a, K, V, A = Global> !UnwindSafe for RustcOccupiedEntry<'a, K, V, A>

impl<'a, K, V, A = Global> !UnwindSafe for RustcVacantEntry<'a, K, V, A>

impl<T, F> UnwindSafe for ScopeGuard<T, F>where F: UnwindSafe, T: UnwindSafe,

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

impl<'a, K> UnwindSafe for Iter<'a, K>where K: RefUnwindSafe,

impl<K, A> UnwindSafe for IntoIter<K, A>where A: UnwindSafe, K: UnwindSafe + RefUnwindSafe,

impl<'a, K, A> UnwindSafe for Drain<'a, K, A>where A: UnwindSafe + RefUnwindSafe, K: UnwindSafe + RefUnwindSafe,

impl<'a, K, F, A = Global> !UnwindSafe for ExtractIf<'a, K, F, A>

impl<'a, T, S, A> UnwindSafe for Intersection<'a, T, S, A>where A: RefUnwindSafe, S: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, S, A> UnwindSafe for Difference<'a, T, S, A>where A: RefUnwindSafe, S: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, S, A> UnwindSafe for SymmetricDifference<'a, T, S, A>where A: RefUnwindSafe, S: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, S, A> UnwindSafe for Union<'a, T, S, A>where A: RefUnwindSafe, S: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, S, A = Global> !UnwindSafe for Entry<'a, T, S, A>

impl<'a, T, S, A = Global> !UnwindSafe for OccupiedEntry<'a, T, S, A>

impl<'a, T, S, A = Global> !UnwindSafe for VacantEntry<'a, T, S, A>

impl UnwindSafe for stat

impl UnwindSafe for tm

impl UnwindSafe for FILE

impl UnwindSafe for Arena

impl UnwindSafe for Span

impl<'a> UnwindSafe for Bridge<'a>

impl<'a> UnwindSafe for BridgeState<'a>

impl<I, O> UnwindSafe for Client<I, O>

impl<'a, A, R> UnwindSafe for Closure<'a, A, R>

impl UnwindSafe for Env

impl<T> UnwindSafe for OwnedStore<T>where T: RefUnwindSafe,

impl<'a, 'b, T> !UnwindSafe for RefMutL<'a, 'b, T>

impl<T> UnwindSafe for ScopedCell<T>where <T as ApplyL<'static>>::Out: UnwindSafe,

impl<S> UnwindSafe for MarkedTypes<S>where S: UnwindSafe,

impl<P> UnwindSafe for MaybeCrossThread<P>where P: UnwindSafe,

impl<P> UnwindSafe for CrossThread<P>where P: UnwindSafe,

impl UnwindSafe for Span

impl<'a> UnwindSafe for BridgeConfig<'a>

impl<T, M> UnwindSafe for Marked<T, M>where M: UnwindSafe, T: UnwindSafe,

impl<Span> UnwindSafe for DelimSpan<Span>where Span: UnwindSafe,

impl<TokenStream, Span> UnwindSafe for Group<TokenStream, Span>where Span: UnwindSafe, TokenStream: UnwindSafe,

impl<Span> UnwindSafe for Punct<Span>where Span: UnwindSafe,

impl<Span, Symbol> UnwindSafe for Ident<Span, Symbol>where Span: UnwindSafe, Symbol: UnwindSafe,

impl<Span, Symbol> UnwindSafe for Literal<Span, Symbol>where Span: UnwindSafe, Symbol: UnwindSafe,

impl<TokenStream, Span, Symbol> UnwindSafe for TokenTree<TokenStream, Span, Symbol>where Span: UnwindSafe, Symbol: UnwindSafe, TokenStream: UnwindSafe,

impl<Span> UnwindSafe for Diagnostic<Span>where Span: UnwindSafe,

impl<Span> UnwindSafe for ExpnGlobals<Span>where Span: UnwindSafe,

impl UnwindSafe for Level

impl<'a> UnwindSafe for Children<'a>

impl UnwindSafe for Span

impl UnwindSafe for Group

impl UnwindSafe for Punct

impl UnwindSafe for Ident

impl<'a> UnwindSafe for Demangle<'a>

impl<'a> UnwindSafe for Demangle<'a>

impl<'s> UnwindSafe for Ident<'s>

impl<'s> UnwindSafe for HexNibbles<'s>

impl<'s> UnwindSafe for Parser<'s>

impl<'a, 'b, 's> !UnwindSafe for Printer<'a, 'b, 's>

impl<'a> UnwindSafe for Demangle<'a>

impl<'a> UnwindSafe for DemangleStyle<'a>

impl<'scope, 'env> !UnwindSafe for Scope<'scope, 'env>

impl<'scope, T> !UnwindSafe for ScopedJoinHandle<'scope, T>

impl<T> UnwindSafe for LocalKey<T>

impl<T> !UnwindSafe for Key<T>

impl UnwindSafe for Inner

impl<'scope, T> !UnwindSafe for Packet<'scope, T>

impl<'scope, T> !UnwindSafe for JoinInner<'scope, T>

impl<T> !UnwindSafe for JoinHandle<T>

impl UnwindSafe for Inner

impl<'a, K, V> UnwindSafe for Iter<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> !UnwindSafe for IterMut<'a, K, V>

impl<K, V> UnwindSafe for IntoIter<K, V>where K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Keys<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Values<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> UnwindSafe for Drain<'a, K, V>where K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<'a, K, V, F> !UnwindSafe for ExtractIf<'a, K, V, F>

impl<'a, K, V> !UnwindSafe for ValuesMut<'a, K, V>

impl<K, V> UnwindSafe for IntoKeys<K, V>where K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

impl<'a, K, V, S> !UnwindSafe for RawEntryBuilderMut<'a, K, V, S>

impl<'a, K, V, S> !UnwindSafe for RawEntryMut<'a, K, V, S>

impl<'a, K, V, S> !UnwindSafe for RawOccupiedEntryMut<'a, K, V, S>

impl<'a, K, V, S> !UnwindSafe for RawVacantEntryMut<'a, K, V, S>

impl<'a, K, V, S> UnwindSafe for RawEntryBuilder<'a, K, V, S>where K: RefUnwindSafe, S: RefUnwindSafe, V: RefUnwindSafe,

impl<'a, K, V> !UnwindSafe for Entry<'a, K, V>

impl<'a, K, V> !UnwindSafe for OccupiedEntry<'a, K, V>

impl<'a, K, V> !UnwindSafe for VacantEntry<'a, K, V>

impl<'a, K, V> !UnwindSafe for OccupiedError<'a, K, V>

impl<T, S> UnwindSafe for HashSet<T, S>where S: UnwindSafe, T: UnwindSafe,

impl<'a, K> UnwindSafe for Iter<'a, K>where K: RefUnwindSafe,

impl<K> UnwindSafe for IntoIter<K>where K: UnwindSafe + RefUnwindSafe,

impl<'a, K> UnwindSafe for Drain<'a, K>where K: UnwindSafe + RefUnwindSafe,

impl<'a, K, F> !UnwindSafe for ExtractIf<'a, K, F>

impl<'a, T, S> UnwindSafe for Intersection<'a, T, S>where S: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, S> UnwindSafe for Difference<'a, T, S>where S: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, S> UnwindSafe for SymmetricDifference<'a, T, S>where S: RefUnwindSafe, T: RefUnwindSafe,

impl<'a, T, S> UnwindSafe for Union<'a, T, S>where S: RefUnwindSafe, T: RefUnwindSafe,

impl UnwindSafe for Vars

impl<'a> UnwindSafe for SplitPaths<'a>

impl UnwindSafe for Args

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

impl<'a, D> !UnwindSafe for Indented<'a, D>

impl UnwindSafe for OsStr

impl UnwindSafe for File

impl<R: ?Sized> UnwindSafe for BufReader<R>where R: UnwindSafe,

impl<W: ?Sized> UnwindSafe for BufWriter<W>where W: UnwindSafe,

impl<W: ?Sized> UnwindSafe for LineWriter<W>where W: UnwindSafe,

impl<'a, W> !UnwindSafe for LineWriterShim<'a, W>

impl<W> !UnwindSafe for IntoInnerError<W>

impl<T> UnwindSafe for Cursor<T>where T: UnwindSafe,

impl !UnwindSafe for Repr

impl !UnwindSafe for Error

impl<C> UnwindSafe for ErrorData<C>where C: UnwindSafe,

impl !UnwindSafe for Custom

impl<'data> !UnwindSafe for BorrowedBuf<'data>

impl<'a> !UnwindSafe for BorrowedCursor<'a>

impl UnwindSafe for Stdin

impl<'a> UnwindSafe for StdinLock<'a>

impl<'a> UnwindSafe for StdoutLock<'a>

impl<'a> UnwindSafe for StderrLock<'a>

impl UnwindSafe for Empty

impl UnwindSafe for Sink

impl<'a> !UnwindSafe for Guard<'a>

impl<'a> !UnwindSafe for IoSliceMut<'a>

impl<'a> UnwindSafe for IoSlice<'a>

impl<T, U> UnwindSafe for Chain<T, U>where T: UnwindSafe, U: UnwindSafe,

impl<T> UnwindSafe for Take<T>where T: UnwindSafe,

impl<R> UnwindSafe for Bytes<R>where R: UnwindSafe,

impl<B> UnwindSafe for Split<B>where B: UnwindSafe,

impl<B> UnwindSafe for Lines<B>where B: UnwindSafe,

impl<'a> UnwindSafe for Incoming<'a>

impl<'a> UnwindSafe for AddressKind<'a>

impl UnwindSafe for ucred

impl<'a, T> UnwindSafe for AncillaryDataIter<'a, T>where T: UnwindSafe,

impl<'a> UnwindSafe for ScmRights<'a>

impl<'a> UnwindSafe for ScmCredentials<'a>

impl<'a> UnwindSafe for AncillaryData<'a>

impl<'a> UnwindSafe for Messages<'a>

impl<'a> !UnwindSafe for SocketAncillary<'a>

impl<'a> UnwindSafe for Incoming<'a>

impl UnwindSafe for PidFd

impl UnwindSafe for stat

impl<'a> UnwindSafe for EncodeWide<'a>

impl<'handle> UnwindSafe for BorrowedHandle<'handle>

impl<'socket> UnwindSafe for BorrowedSocket<'socket>

impl<'fd> UnwindSafe for BorrowedFd<'fd>

impl<'a> UnwindSafe for Prefix<'a>

impl UnwindSafe for State

impl<'a> UnwindSafe for PrefixComponent<'a>

impl<'a> UnwindSafe for Component<'a>

impl<'a> UnwindSafe for Components<'a>

impl<'a> UnwindSafe for Iter<'a>

impl<'a> UnwindSafe for Ancestors<'a>

impl UnwindSafe for Path

impl<'a> UnwindSafe for Display<'a>

impl<'a> UnwindSafe for CommandEnvs<'a>

impl UnwindSafe for Child

impl<'a> UnwindSafe for CommandArgs<'a>

impl UnwindSafe for Stdio

impl<T> UnwindSafe for Receiver<T>

impl<'a, T> UnwindSafe for Iter<'a, T>

impl<'a, T> UnwindSafe for TryIter<'a, T>

impl<T> UnwindSafe for IntoIter<T>

impl<T> UnwindSafe for Sender<T>

impl<T> UnwindSafe for SyncSender<T>

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

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

impl<T, F> UnwindSafe for Data<T, F>where F: UnwindSafe, T: UnwindSafe,

impl<T> UnwindSafe for Slot<T>where T: UnwindSafe,

impl<T> UnwindSafe for Channel<T>where T: UnwindSafe,

impl UnwindSafe for Inner

impl<C> UnwindSafe for Counter<C>where C: UnwindSafe,

impl<C> UnwindSafe for Sender<C>where C: RefUnwindSafe,

impl<C> UnwindSafe for Receiver<C>where C: RefUnwindSafe,

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

impl<T> UnwindSafe for Slot<T>where T: UnwindSafe,

impl<T> !UnwindSafe for Block<T>

impl<T> !UnwindSafe for Position<T>

impl<T> !UnwindSafe for Channel<T>

impl UnwindSafe for Token

impl<T> UnwindSafe for CachePadded<T>where T: UnwindSafe,

impl UnwindSafe for Entry

impl UnwindSafe for Waker

impl<T> UnwindSafe for Packet<T>where T: UnwindSafe,

impl UnwindSafe for Inner

impl<T> UnwindSafe for Channel<T>where T: UnwindSafe,

impl<T> !UnwindSafe for SenderFlavor<T>

impl<T> !UnwindSafe for ReceiverFlavor<T>

impl<'a, T: ?Sized> UnwindSafe for MutexGuard<'a, T>

impl UnwindSafe for Flag

impl UnwindSafe for Guard

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

impl<T> UnwindSafe for TryLockError<T>where T: UnwindSafe,

impl<'a, T> UnwindSafe for ReentrantMutexGuard<'a, T>

impl<'a, T> !UnwindSafe for RwLockReadGuard<'a, T>

impl<'a, T: ?Sized> UnwindSafe for RwLockWriteGuard<'a, T>

impl<T> !UnwindSafe for Value<T>

impl<T> UnwindSafe for LazyKeyInner<T>where T: UnwindSafe,

impl<'a> !UnwindSafe for EHContext<'a>

impl<T> UnwindSafe for Unaligned<T>where T: UnwindSafe,

impl UnwindSafe for Args

impl UnwindSafe for Arg

impl UnwindSafe for Quote

impl UnwindSafe for GUID

impl UnwindSafe for M128A

impl UnwindSafe for File

impl<'a> UnwindSafe for DirBuffIter<'a>

impl<'a> UnwindSafe for IoSlice<'a>

impl<'a> !UnwindSafe for IoSliceMut<'a>

impl UnwindSafe for Mutex

impl UnwindSafe for Env

impl<'a> UnwindSafe for SplitPaths<'a>

impl UnwindSafe for Buf

impl UnwindSafe for Slice

impl<'a, const LEN: usize> UnwindSafe for PrefixParser<'a, LEN>

impl<'a, 'b> UnwindSafe for PrefixParserSlice<'a, 'b>

impl UnwindSafe for Pipes

impl<'a> !UnwindSafe for AsyncPipe<'a>

impl UnwindSafe for State

impl UnwindSafe for Stdio

impl<'a> UnwindSafe for CommandArgs<'a>

impl UnwindSafe for Stdin

impl<T: ?Sized> UnwindSafe for Align8<T>where T: UnwindSafe,

impl<T> UnwindSafe for LazyBox<T>where T: UnwindSafe + RefUnwindSafe,

impl UnwindSafe for Once

impl !UnwindSafe for Waiter

impl<'a> UnwindSafe for WaiterQueue<'a>

impl<'a> UnwindSafe for WStrUnits<'a>

impl UnwindSafe for Wtf8

impl<'a> UnwindSafe for Wtf8CodePoints<'a>

impl !UnwindSafe for Hook

impl UnwindSafe for Frame

impl UnwindSafe for Frame

impl<'a> UnwindSafe for Symbol<'a>

impl<'a> UnwindSafe for ResolveWhat<'a>

impl<'a> UnwindSafe for OptionCppSymbol<'a>

impl<'a> UnwindSafe for SymbolName<'a>

impl<'a> UnwindSafe for BytesOrWideString<'a>

impl<'a, 'b> !UnwindSafe for BacktraceFmt<'a, 'b>

impl<'fmt, 'a, 'b> !UnwindSafe for BacktraceFrameFmt<'fmt, 'a, 'b>

impl UnwindSafe for Init

impl UnwindSafe for M128A

impl UnwindSafe for Bomb

impl<Ret, T> UnwindSafe for fn (T₁, T₂, …, Tₙ) -> Ret

impl UnwindSafe for ()

impl UnwindSafe for f64

impl UnwindSafe for f32

impl UnwindSafe for Cache

impl<T> !UnwindSafe for OutputLocation<T>

impl<T> !UnwindSafe for JsonFormatter<T>

impl<S> UnwindSafe for EscapedString<S>where S: UnwindSafe,

impl<T> !UnwindSafe for JunitFormatter<T>

impl<T> !UnwindSafe for PrettyFormatter<T>

impl<T> !UnwindSafe for TerseFormatter<T>

impl UnwindSafe for Rng

impl UnwindSafe for Param

impl UnwindSafe for Flags

impl !UnwindSafe for Error

impl<T> UnwindSafe for TerminfoTerminal<T>where T: UnwindSafe,

impl<T> UnwindSafe for WinConsole<T>where T: UnwindSafe,

impl UnwindSafe for COORD

impl !UnwindSafe for TestFn