pub auto trait UnwindSafe { }
Available on non-crate feature miri-test-libstd only.
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 turns 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§

1.59.0 · source§

impl UnwindSafe for std::sync::once::Once

§

impl UnwindSafe for AbortHandle

§

impl UnwindSafe for CancellationToken

§

impl UnwindSafe for Notify

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,

source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

1.25.0 · source§

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

source§

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

source§

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

source§

impl<T> UnwindSafe for std::sync::mutex::Mutex<T>where T: ?Sized,

source§

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

source§

impl<T> UnwindSafe for std::sync::rwlock::RwLock<T>where T: ?Sized,

§

impl<T> UnwindSafe for AtomicCell<T>

Available on crate feature std only.
§

impl<T> UnwindSafe for JoinHandle<T>

§

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

§

impl<T> UnwindSafe for Receiver<T>

§

impl<T> UnwindSafe for Sender<T>

§

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

source§

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

Auto implementors§

§

impl !UnwindSafe for Body

§

impl !UnwindSafe for kvarn::application::Error

§

impl !UnwindSafe for HttpConnection

§

impl !UnwindSafe for ResponseBodyPipe

§

impl !UnwindSafe for ResponsePipe

§

impl !UnwindSafe for Encryption

§

impl !UnwindSafe for kvarn::encryption::Error

§

impl !UnwindSafe for kvarn::Incoming

§

impl !UnwindSafe for SendKind

§

impl !UnwindSafe for CertificateError

§

impl !UnwindSafe for TcpStreamAsyncWrapper

§

impl !UnwindSafe for CompressedResponse

§

impl !UnwindSafe for PluginResponse

§

impl !UnwindSafe for Plugins

§

impl !UnwindSafe for Extensions

§

impl !UnwindSafe for LazyRequestBody

§

impl !UnwindSafe for Collection

§

impl !UnwindSafe for CollectionBuilder

§

impl !UnwindSafe for Host

§

impl !UnwindSafe for kvarn::limiting::Manager

§

impl !UnwindSafe for kvarn::shutdown::Manager

§

impl !UnwindSafe for CacheReply

§

impl !UnwindSafe for FatResponse

§

impl !UnwindSafe for PortDescriptor

§

impl !UnwindSafe for RunConfig

§

impl !UnwindSafe for Settings

§

impl !UnwindSafe for VariedResponse

§

impl !UnwindSafe for File

§

impl !UnwindSafe for kvarn::prelude::io::Error

§

impl !UnwindSafe for kvarn::prelude::networking::TcpListener

§

impl UnwindSafe for H2SendResponse

§

impl UnwindSafe for PushedResponsePipe

§

impl UnwindSafe for CachePreferenceError

§

impl UnwindSafe for ClientCachePreference

§

impl UnwindSafe for CompressPreference

§

impl UnwindSafe for PreferredCompression

§

impl UnwindSafe for ServerCachePreference

§

impl UnwindSafe for UriKey

§

impl UnwindSafe for Value

§

impl UnwindSafe for PluginResponseKind

§

impl UnwindSafe for BindIpVersion

§

impl UnwindSafe for CacheAction

§

impl UnwindSafe for Action

§

impl UnwindSafe for kvarn::websocket::Error

§

impl UnwindSafe for kvarn::prelude::compact_str::core::cmp::Ordering

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for c_void

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for Which

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for kvarn::prelude::compact_str::core::sync::atomic::Ordering

§

impl UnwindSafe for kvarn::prelude::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 SocketAddr

§

impl UnwindSafe for BytesCow

§

impl UnwindSafe for CacheControlError

§

impl UnwindSafe for kvarn::prelude::utils::parse::Error

§

impl UnwindSafe for RequestParseStage

§

impl UnwindSafe for SanitizeError

§

impl UnwindSafe for ByteBody

§

impl UnwindSafe for CompressionOptions

§

impl UnwindSafe for PathQuery

§

impl UnwindSafe for AllowList

§

impl UnwindSafe for ComputedRule

§

impl UnwindSafe for Rule

§

impl UnwindSafe for ValueSet

§

impl UnwindSafe for kvarn::ctl::Arguments

§

impl UnwindSafe for Id

§

impl UnwindSafe for Options

§

impl UnwindSafe for Metadata

§

impl UnwindSafe for UninitSlice

§

impl UnwindSafe for kvarn::prelude::bytes::Bytes

§

impl UnwindSafe for BytesMut

§

impl UnwindSafe for OffsetDateTime

§

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 kvarn::prelude::compact_str::core::ascii::EscapeDefault

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for kvarn::prelude::compact_str::core::char::EscapeDebug

§

impl UnwindSafe for kvarn::prelude::compact_str::core::char::EscapeDefault

§

impl UnwindSafe for kvarn::prelude::compact_str::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 SipHasher

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

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 kvarn::prelude::compact_str::core::ptr::Alignment

§

impl UnwindSafe for TimSortRun

§

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 UnwindSafe for CompactString

§

impl UnwindSafe for Utf16Error

§

impl UnwindSafe for kvarn::prelude::fmt::Error

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for HeaderName

§

impl UnwindSafe for HeaderValue

§

impl UnwindSafe for InvalidHeaderName

§

impl UnwindSafe for InvalidHeaderValue

§

impl UnwindSafe for ToStrError

§

impl UnwindSafe for kvarn::prelude::io::Empty

§

impl UnwindSafe for kvarn::prelude::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 AddrParseError

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for kvarn::prelude::net::TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for kvarn::prelude::net::UdpSocket

§

impl UnwindSafe for kvarn::prelude::networking::UdpSocket

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for Instant

§

impl UnwindSafe for Method

§

impl UnwindSafe for Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StatusCode

§

impl UnwindSafe for Version

§

impl UnwindSafe for WriteableBytes

§

impl UnwindSafe for Authority

§

impl UnwindSafe for Builder

§

impl UnwindSafe for InvalidUri

§

impl UnwindSafe for InvalidUriParts

§

impl UnwindSafe for Parts

§

impl UnwindSafe for PathAndQuery

§

impl UnwindSafe for Scheme

§

impl UnwindSafe for Uri

§

impl UnwindSafe for CacheControl

§

impl UnwindSafe for CriticalRequestComponents

§

impl UnwindSafe for PresentArguments

§

impl UnwindSafe for PresentExtensions

§

impl UnwindSafe for PresentExtensionsIter

§

impl UnwindSafe for Mime

§

impl UnwindSafe for Alignment

§

impl UnwindSafe for Argument

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Count

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FormatSpec

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Number

§

impl UnwindSafe for Sign

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

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

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for kvarn::prelude::fmt::Arguments<'a>

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for MethodAllowList<'a>

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for kvarn::prelude::compact_str::Drain<'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 kvarn::prelude::net::Incoming<'a>

§

impl<'a> UnwindSafe for kvarn::prelude::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 kvarn::prelude::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for kvarn::prelude::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for kvarn::prelude::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for kvarn::prelude::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 Query<'a>

§

impl<'a> UnwindSafe for QueryPair<'a>

§

impl<'a> UnwindSafe for QueryPairIter<'a>

§

impl<'a> UnwindSafe for PresentArgumentsIter<'a>

§

impl<'a> UnwindSafe for QuotedStrSplitIter<'a>

§

impl<'a> UnwindSafe for ValueQualitySet<'a>

§

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

§

impl<'a> UnwindSafe for Part<'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 kvarn::prelude::compact_str::core::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for kvarn::prelude::compact_str::core::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, 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 kvarn::prelude::str::RSplit<'a, P>where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

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

§

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

§

impl<'a, P> UnwindSafe for kvarn::prelude::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 Entry<'a, T>

§

impl<'a, T> !UnwindSafe for kvarn::prelude::compact_str::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 kvarn::prelude::compact_str::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 kvarn::prelude::header::Drain<'a, T>

§

impl<'a, T> !UnwindSafe for kvarn::prelude::header::Iter<'a, T>

§

impl<'a, T> !UnwindSafe for kvarn::prelude::header::IterMut<'a, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> UnwindSafe for kvarn::prelude::compact_str::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 kvarn::prelude::compact_str::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> UnwindSafe for GetAll<'a, T>where T: RefUnwindSafe,

§

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

§

impl<'a, T> UnwindSafe for ValueIter<'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 kvarn::prelude::compact_str::core::slice::RSplit<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for kvarn::prelude::compact_str::core::slice::RSplitN<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for kvarn::prelude::compact_str::core::slice::Split<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for kvarn::prelude::compact_str::core::slice::SplitInclusive<'a, T, P>where P: UnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, P> UnwindSafe for kvarn::prelude::compact_str::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 kvarn::prelude::compact_str::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, T: ?Sized> UnwindSafe for CleanDebug<'a, T>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<'data> !UnwindSafe for BorrowedBuf<'data>

§

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

§

impl<A> UnwindSafe for kvarn::prelude::compact_str::core::iter::Repeat<A>where A: UnwindSafe,

§

impl<A> UnwindSafe for kvarn::prelude::compact_str::core::option::IntoIter<A>where A: UnwindSafe,

§

impl<A, B> UnwindSafe for kvarn::prelude::compact_str::core::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 Reader<B>where B: UnwindSafe,

§

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

§

impl<B> UnwindSafe for kvarn::prelude::io::Lines<B>where B: UnwindSafe,

§

impl<B> UnwindSafe for kvarn::prelude::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, 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 kvarn::prelude::compact_str::core::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 kvarn::prelude::compact_str::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<K, V> !UnwindSafe for MokaCache<K, V>

§

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

§

impl<R> !UnwindSafe for Http1Body<R>

§

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

§

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

§

impl<R> UnwindSafe for kvarn::prelude::io::Bytes<R>where R: UnwindSafe,

§

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

§

impl<T> !UnwindSafe for kvarn::prelude::Mutex<T>

§

impl<T> !UnwindSafe for Request<T>

§

impl<T> !UnwindSafe for Response<T>

§

impl<T> !UnwindSafe for kvarn::prelude::RwLock<T>

§

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 kvarn::prelude::bytes::buf::IntoIter<T>where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for kvarn::prelude::bytes::buf::Take<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for kvarn::prelude::compact_str::core::cell::OnceCell<T>where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for Pending<T>

§

impl<T> UnwindSafe for kvarn::prelude::compact_str::core::future::Ready<T>where T: UnwindSafe,

§

impl<T> UnwindSafe for kvarn::prelude::compact_str::core::iter::Empty<T>

§

impl<T> UnwindSafe for kvarn::prelude::compact_str::core::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 kvarn::prelude::compact_str::core::result::IntoIter<T>where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for kvarn::prelude::compact_str::core::task::Ready<T>where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for kvarn::prelude::header::IntoIter<T>where T: UnwindSafe + RefUnwindSafe,

§

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

§

impl<T> UnwindSafe for kvarn::prelude::io::Take<T>where T: UnwindSafe,

§

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

§

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

§

impl<T> UnwindSafe for Wrapper<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, U> UnwindSafe for kvarn::prelude::bytes::buf::Chain<T, U>where T: UnwindSafe, U: UnwindSafe,

§

impl<T, U> UnwindSafe for kvarn::prelude::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 LANES: usize> UnwindSafe for Simd<T, LANES>where T: UnwindSafe,

§

impl<T, const N: usize> UnwindSafe for kvarn::prelude::compact_str::core::array::IntoIter<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<V> UnwindSafe for CacheOut<V>where V: 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 GetManyMutError<N>