Trait std::panic::UnwindSafe

1.9.0 · source ·
pub auto trait UnwindSafe { }
Expand description

表示 Rust 中 “panic safe” 类型的标记 trait。

默认情况下,此 trait 对许多类型都实现,并且在推断实现时类似于 SendSync traits。 这个 trait 的目的是编码哪些类型可以安全地越过 catch_unwind 边界,而不必担心 unwind 安全。

什么是 unwind 安全性?

在 Rust 中,如果一个函数可以 0panics 或调用一个传递 panics 的函数,则可以提前 “return”。 这种控制流并非总是可以预期的,并且有可能通过结合以下两个关键组件而导致细微的错误:

  1. 当线程 panics 时,数据结构体处于暂时无效状态。
  2. 然后,随后观察到该损坏的不变量。

通常在 Rust 中,很难执行步骤 (2),因为捕获 panic 涉及生成线程 (这反过来使得以后很难看到损坏的不,变体) 或使用此模块中的 catch_unwind 函数。

此外,即使看到一个不变量,它在 Rust 中通常也不是问题,因为没有未初始化的值 (如 C 或 C++ )。

然而,在 Rust 中,logical 不变量有可能会被破坏,这最终会导致行为 Bug。 Rust 中 unwind 安全性的另一个关键方面是,在没有 unsafe 代码的情况下,panic 不会导致内存不安全。

那是 unwind 安全性的旋风之旅,但是有关 unwind 安全性及其如何应用于 Rust 的更多信息,请参见 相关的 RFC

什么是 UnwindSafe

现在我们已经了解了 Rust 中的 unwind 安全性,了解此 trait 所代表的意义也很重要。 如上所述,见证不变量被破坏的一种方法是通过这个模块中的 catch_explode 函数,因为它允许捕获一个 panic,然后重新使用闭包的环境。

简而言之,如果类型 T 无法通过使用 catch_unwind (捕获 panic) 来轻松地见证损坏的不变量,则可以实现 UnwindSafe。 这个 trait 是自动 trait,所以它是针对多种类型自动实现的,并且它也是由结构体组成的 (例如,如果结构体的所有组件都是 unwind 安全的,则该结构体是 unwind 安全的)。

但是请注意,这不是不安全的 trait,因此该 trait 没有提供简洁的契约。 相反,它旨在作为 “speed bump” 的一部分,以警告 catch_unwind 用户,可能会目击到损坏的不变量,并且可能需要解决这些不变量。

谁实现 UnwindSafe

&mut T&RefCell<T> 之类的类型是 unwind 不安全的示例。通常的想法是,默认情况下,可以在 catch_unwind 之间共享的任何可变状态都不是 unwind 安全的。 这是因为在 catch_unwind 之外很容易看到损坏的不变量,因为数据可以像往常一样简单地访问。

但是,像 &Mutex<T> 这样的类型是 unwind 安全的,因为它们默认实现中毒。他们仍然可以目击损坏的不变量,但是他们已经提供了自己的 “speed bumps” 来做到这一点。

什么时候应使用 UnwindSafe

并非意味着大多数类型或函数都不必担心此 trait。 它仅用作 catch_unwind 函数的绑定,如上所述,缺少 unsafe 意味着它主要是建议。 AssertUnwindSafe 包装器结构体可用于强制将 trait 应用于传递给 catch_unwind 的任何封闭变量。

Implementors§

1.59.0 · source§

impl UnwindSafe for std::sync::Once

1.64.0 · source§

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

1.36.0 · source§

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

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 Rc<T>where T: RefUnwindSafe + ?Sized,

source§

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

source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

1.70.0 · source§

impl<T: UnwindSafe> UnwindSafe for OnceLock<T>

source§

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

source§

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

source§

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

Auto implementors§

§

impl !UnwindSafe for std::io::Error

§

impl !UnwindSafe for Command

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for std::cmp::Ordering

§

impl UnwindSafe for TryReserveErrorKind

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for VarError

§

impl UnwindSafe for c_void

§

impl UnwindSafe for std::fmt::Alignment

§

impl UnwindSafe for ErrorKind

§

impl UnwindSafe for SeekFrom

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for Shutdown

§

impl UnwindSafe for std::net::SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for Which

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for std::sync::atomic::Ordering

§

impl UnwindSafe for RecvTimeoutError

§

impl UnwindSafe for TryRecvError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for bool

§

impl UnwindSafe for char

§

impl UnwindSafe for f32

§

impl UnwindSafe for f64

§

impl UnwindSafe for i8

§

impl UnwindSafe for i16

§

impl UnwindSafe for i32

§

impl UnwindSafe for i64

§

impl UnwindSafe for i128

§

impl UnwindSafe for isize

§

impl UnwindSafe for str

§

impl UnwindSafe for u8

§

impl UnwindSafe for u16

§

impl UnwindSafe for u32

§

impl UnwindSafe for u64

§

impl UnwindSafe for u128

§

impl UnwindSafe for ()

§

impl UnwindSafe for usize

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Global

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for System

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for std::ascii::EscapeDefault

§

impl UnwindSafe for Backtrace

§

impl UnwindSafe for BacktraceFrame

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for std::char::EscapeDebug

§

impl UnwindSafe for std::char::EscapeDefault

§

impl UnwindSafe for std::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for RandomState

§

impl UnwindSafe for TryReserveError

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for CStr

§

impl UnwindSafe for CString

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for FromVecWithNulError

§

impl UnwindSafe for IntoStringError

§

impl UnwindSafe for NulError

§

impl UnwindSafe for OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for std::fmt::Error

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for DirEntry

§

impl UnwindSafe for File

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for FileType

§

impl UnwindSafe for Metadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for ReadDir

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for std::io::Empty

§

impl UnwindSafe for std::io::Repeat

§

impl UnwindSafe for Sink

§

impl UnwindSafe for Stderr

§

impl UnwindSafe for Stdin

§

impl UnwindSafe for Stdout

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for UdpSocket

§

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 OwnedFd

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for stat

§

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

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for UCred

§

impl UnwindSafe for HandleOrInvalid

§

impl UnwindSafe for HandleOrNull

§

impl UnwindSafe for InvalidHandleError

§

impl UnwindSafe for NullHandleError

§

impl UnwindSafe for OwnedHandle

§

impl UnwindSafe for OwnedSocket

§

impl UnwindSafe for Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for Child

§

impl UnwindSafe for ChildStderr

§

impl UnwindSafe for ChildStdin

§

impl UnwindSafe for ChildStdout

§

impl UnwindSafe for ExitCode

§

impl UnwindSafe for ExitStatus

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for Output

§

impl UnwindSafe for Stdio

§

impl UnwindSafe for std::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for FromUtf8Error

§

impl UnwindSafe for FromUtf16Error

§

impl UnwindSafe for String

§

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 RecvError

§

impl UnwindSafe for Barrier

§

impl UnwindSafe for BarrierWaitResult

§

impl UnwindSafe for Condvar

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for Builder

§

impl UnwindSafe for Thread

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for Duration

§

impl UnwindSafe for Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for SystemTimeError

§

impl UnwindSafe for TryFromFloatSecsError

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for std::str::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 std::string::Drain<'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 std::option::IterMut<'a, A>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, K, F> !UnwindSafe for std::collections::hash_set::DrainFilter<'a, K, F>

§

impl<'a, K, V> !UnwindSafe for std::collections::hash_map::Entry<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for std::collections::btree_map::IterMut<'a, K, V>

§

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

§

impl<'a, K, V> !UnwindSafe for std::collections::btree_map::ValuesMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for std::collections::hash_map::IterMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for std::collections::hash_map::OccupiedEntry<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for std::collections::hash_map::OccupiedError<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for std::collections::hash_map::VacantEntry<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for std::collections::hash_map::ValuesMut<'a, K, V>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, K, V, A = Global> !UnwindSafe for std::collections::btree_map::Entry<'a, K, V, A>

§

impl<'a, K, V, A = Global> !UnwindSafe for std::collections::btree_map::CursorMut<'a, K, V, A>

§

impl<'a, K, V, A = Global> !UnwindSafe for std::collections::btree_map::OccupiedEntry<'a, K, V, A>

§

impl<'a, K, V, A = Global> !UnwindSafe for std::collections::btree_map::OccupiedError<'a, K, V, A>

§

impl<'a, K, V, A = Global> !UnwindSafe for std::collections::btree_map::VacantEntry<'a, K, V, A>

§

impl<'a, K, V, F> !UnwindSafe for std::collections::hash_map::DrainFilter<'a, K, V, F>

§

impl<'a, K, V, F, A = Global> !UnwindSafe for std::collections::btree_map::DrainFilter<'a, K, V, F, A>

§

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

§

impl<'a, K, V, S> !UnwindSafe for RawEntryBuilderMut<'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, 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 std::str::RSplit<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for std::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 std::str::Split<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

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

§

impl<'a, P> UnwindSafe for std::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 DrainSorted<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for std::collections::linked_list::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for std::collections::vec_deque::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for std::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 std::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 std::collections::binary_heap::Drain<'a, T>where T: RefUnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> UnwindSafe for std::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 std::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> UnwindSafe for std::sync::mpsc::Iter<'a, T>

§

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

§

impl<'a, T, A = Global> !UnwindSafe for std::collections::linked_list::CursorMut<'a, T, A>

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T, F, A = Global> !UnwindSafe for std::collections::btree_set::DrainFilter<'a, T, F, A>

§

impl<'a, T, F, A = Global> !UnwindSafe for std::collections::linked_list::DrainFilter<'a, T, F, A>

§

impl<'a, T, F, A = Global> !UnwindSafe for std::vec::DrainFilter<'a, T, F, A>

§

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 std::slice::RSplit<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T, const N: usize> UnwindSafe for std::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, T: ?Sized> UnwindSafe for MutexGuard<'a, T>

§

impl<'a, T: ?Sized> UnwindSafe for RwLockReadGuard<'a, T>where T: RefUnwindSafe,

§

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

§

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<'data> !UnwindSafe for BorrowedBuf<'data>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<Dyn> !UnwindSafe for DynMetadata<Dyn>

§

impl<E> UnwindSafe for Report<E>where E: 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 std::iter::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 std::iter::ArrayChunks<I, N>where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<Idx> UnwindSafe for std::ops::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<K> UnwindSafe for std::collections::hash_set::IntoIter<K>where K: UnwindSafe + RefUnwindSafe,

§

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

§

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

§

impl<K, V> UnwindSafe for std::collections::hash_map::IntoValues<K, V>where K: UnwindSafe + RefUnwindSafe, V: UnwindSafe + RefUnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> !UnwindSafe for std::rc::Weak<T>

§

impl<T> !UnwindSafe for JoinHandle<T>

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for [T]where T: UnwindSafe,

§

impl<T> UnwindSafe for (T₁, T₂, …, 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 std::collections::binary_heap::IntoIter<T>where T: UnwindSafe + RefUnwindSafe,

§

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

§

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

§

impl<T> UnwindSafe for Pending<T>

§

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

§

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

§

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

§

impl<T> UnwindSafe for std::iter::Empty<T>

§

impl<T> UnwindSafe for std::iter::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 std::result::IntoIter<T>where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for std::sync::mpsc::IntoIter<T>

§

impl<T> UnwindSafe for Receiver<T>

§

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

§

impl<T> UnwindSafe for Sender<T>

§

impl<T> UnwindSafe for SyncSender<T>

§

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

§

impl<T> UnwindSafe for LocalKey<T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T, A> UnwindSafe for Vec<T, A>where A: UnwindSafe, 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, S> UnwindSafe for HashSet<T, S>where S: UnwindSafe, T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

impl<T, const N: usize> UnwindSafe for [MaybeUninit<T>; N]where T: UnwindSafe,

§

impl<T: ?Sized> UnwindSafe for ThinBox<T>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<T: ?Sized> UnwindSafe for std::sync::Weak<T>where T: RefUnwindSafe,

§

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

§

impl<W> !UnwindSafe for IntoInnerError<W>

§

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

§

impl<W> UnwindSafe for LineWriter<W>where W: 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 [u8; N]