devela::_dep::bytemuck::__core::panic

Trait UnwindSafe

1.41.0 · Source
pub auto trait UnwindSafe { }
Available on crate feature dep_bytemuck 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 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§

1.9.0 · Source§

impl UnwindSafe for Condvar

1.59.0 · Source§

impl UnwindSafe for devela::work::Once

1.9.0 · Source§

impl UnwindSafe for devela::_dep::_std::io::Stderr

1.9.0 · Source§

impl UnwindSafe for StderrLock<'_>

1.9.0 · Source§

impl UnwindSafe for devela::_dep::_std::io::Stdout

1.9.0 · Source§

impl UnwindSafe for StdoutLock<'_>

1.64.0 · Source§

impl<K, V, A> UnwindSafe for BTreeMap<K, V, A>

1.36.0 · Source§

impl<K, V, S> UnwindSafe for devela::_dep::_std::collections::HashMap<K, V, S>
where K: UnwindSafe, V: UnwindSafe, S: UnwindSafe,

1.9.0 · Source§

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

1.9.0 · Source§

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

1.9.0 · Source§

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

1.9.0 · Source§

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

1.28.0 · Source§

impl<T> UnwindSafe for NonZero<T>

1.9.0 · Source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

1.25.0 · Source§

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

1.9.0 · Source§

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

1.70.0 · Source§

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

1.9.0 · Source§

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

Source§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpmc::Receiver<T>

Source§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpmc::Sender<T>

Source§

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

§

impl<T> UnwindSafe for AtomicCell<T>

§

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

§

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

1.9.0 · Source§

impl<T, A> UnwindSafe for Rc<T, A>

1.9.0 · Source§

impl<T, A> UnwindSafe for Arc<T, A>

1.80.0 · Source§

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

Auto implementors§

§

impl !UnwindSafe for UiError

§

impl !UnwindSafe for FromFileError

§

impl !UnwindSafe for devela::_dep::miniquad::fs::Error

§

impl !UnwindSafe for StreamInner

§

impl !UnwindSafe for devela::_dep::rodio::decoder::symphonia::SeekError

§

impl !UnwindSafe for devela::_dep::rodio::source::SeekError

§

impl !UnwindSafe for devela::_dep::symphonia::core::errors::Error

§

impl !UnwindSafe for devela::all::IoError

§

impl !UnwindSafe for Command

§

impl !UnwindSafe for Bump

§

impl !UnwindSafe for devela::_dep::jiff::Error

§

impl !UnwindSafe for Renderer

§

impl !UnwindSafe for ClockHandle

§

impl !UnwindSafe for CompressorHandle

§

impl !UnwindSafe for DelayBuilder

§

impl !UnwindSafe for DelayHandle

§

impl !UnwindSafe for DistortionHandle

§

impl !UnwindSafe for EqFilterHandle

§

impl !UnwindSafe for FilterHandle

§

impl !UnwindSafe for PanningControlHandle

§

impl !UnwindSafe for ReverbHandle

§

impl !UnwindSafe for VolumeControlHandle

§

impl !UnwindSafe for ListenerHandle

§

impl !UnwindSafe for LfoHandle

§

impl !UnwindSafe for TweenerHandle

§

impl !UnwindSafe for StaticSoundHandle

§

impl !UnwindSafe for MainTrackBuilder

§

impl !UnwindSafe for MainTrackHandle

§

impl !UnwindSafe for SendTrackBuilder

§

impl !UnwindSafe for SendTrackHandle

§

impl !UnwindSafe for SpatialTrackBuilder

§

impl !UnwindSafe for SpatialTrackHandle

§

impl !UnwindSafe for TrackBuilder

§

impl !UnwindSafe for TrackHandle

§

impl !UnwindSafe for PyErr

§

impl !UnwindSafe for devela::_dep::rand_core::Error

§

impl !UnwindSafe for ThreadBuilder

§

impl !UnwindSafe for ThreadPool

§

impl !UnwindSafe for ThreadPoolBuildError

§

impl !UnwindSafe for BoxedError

§

impl !UnwindSafe for devela::_dep::rkyv::bytecheck::rancor::Error

§

impl !UnwindSafe for devela::_dep::rodio::cpal::platform::AlsaStream

§

impl !UnwindSafe for devela::_dep::rodio::cpal::Stream

§

impl !UnwindSafe for OutputStream

§

impl !UnwindSafe for MediaSourceStream

§

impl !UnwindSafe for ProbeResult

§

impl !UnwindSafe for OutputDevice

§

impl !UnwindSafe for devela::_dep::tokio::io::Stderr

§

impl !UnwindSafe for devela::_dep::tokio::io::Stdin

§

impl !UnwindSafe for devela::_dep::tokio::io::Stdout

§

impl !UnwindSafe for DefaultCallsite

§

impl !UnwindSafe for Identifier

§

impl !UnwindSafe for DefaultGuard

§

impl !UnwindSafe for WeakDispatch

§

impl !UnwindSafe for Field

§

impl !UnwindSafe for FieldSet

§

impl !UnwindSafe for devela::_dep::tracing::field::Iter

§

impl !UnwindSafe for EnteredSpan

§

impl !UnwindSafe for Dispatch

§

impl !UnwindSafe for devela::_dep::tracing::Span

§

impl UnwindSafe for devela::_core::ascii::Char

§

impl UnwindSafe for DebugAsHex

§

impl UnwindSafe for devela::_core::fmt::Sign

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for devela::_core::net::SocketAddr

§

impl UnwindSafe for GetManyMutError

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for ExampleEnumIntU8

§

impl UnwindSafe for AngleDirection

§

impl UnwindSafe for AngleKind

§

impl UnwindSafe for AudioError

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for ColorError

§

impl UnwindSafe for CompressionMode

§

impl UnwindSafe for DrawError

§

impl UnwindSafe for EncodingMode

§

impl UnwindSafe for devela::all::FmtAlignment

§

impl UnwindSafe for FontError

§

impl UnwindSafe for ImageError

§

impl UnwindSafe for devela::all::IoErrorKind

§

impl UnwindSafe for MediaError

§

impl UnwindSafe for MidiError

§

impl UnwindSafe for NotAvailable

§

impl UnwindSafe for WaveletUnitRole

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for DataNotEnough

§

impl UnwindSafe for MismatchedBounds

§

impl UnwindSafe for PartialSpace

§

impl UnwindSafe for c_void

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for NumError

§

impl UnwindSafe for devela::num::Ordering

§

impl UnwindSafe for devela::num::Sign

§

impl UnwindSafe for UnitBi

§

impl UnwindSafe for UnitSi

§

impl UnwindSafe for Month

§

impl UnwindSafe for devela::phys::Weekday

§

impl UnwindSafe for devela::text::AsciiChar

§

impl UnwindSafe for InvalidText

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for devela::ui::LayoutError

§

impl UnwindSafe for devela::work::AtomicOrdering

§

impl UnwindSafe for TryReserveErrorKind

§

impl UnwindSafe for VarError

§

impl UnwindSafe for devela::_dep::_std::io::SeekFrom

§

impl UnwindSafe for devela::_dep::_std::net::Shutdown

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for RecvTimeoutError

§

impl UnwindSafe for TryRecvError

§

impl UnwindSafe for CollectionAllocErr

§

impl UnwindSafe for SetCursorStyle

§

impl UnwindSafe for devela::_dep::crossterm::event::Event

§

impl UnwindSafe for devela::_dep::crossterm::event::KeyCode

§

impl UnwindSafe for KeyEventKind

§

impl UnwindSafe for MediaKeyCode

§

impl UnwindSafe for ModifierKeyCode

§

impl UnwindSafe for devela::_dep::crossterm::event::MouseButton

§

impl UnwindSafe for MouseEventKind

§

impl UnwindSafe for Attribute

§

impl UnwindSafe for devela::_dep::crossterm::style::Color

§

impl UnwindSafe for Colored

§

impl UnwindSafe for ClearType

§

impl UnwindSafe for devela::_dep::hashbrown::TryReserveError

§

impl UnwindSafe for Era

§

impl UnwindSafe for devela::_dep::jiff::civil::Weekday

§

impl UnwindSafe for RoundMode

§

impl UnwindSafe for Unit

§

impl UnwindSafe for Designator

§

impl UnwindSafe for devela::_dep::jiff::fmt::friendly::Direction

§

impl UnwindSafe for FractionalUnit

§

impl UnwindSafe for Spacing

§

impl UnwindSafe for Meridiem

§

impl UnwindSafe for PiecesOffset

§

impl UnwindSafe for AmbiguousOffset

§

impl UnwindSafe for Disambiguation

§

impl UnwindSafe for Dst

§

impl UnwindSafe for OffsetConflict

§

impl UnwindSafe for devela::_dep::kira::backend::cpal::Error

§

impl UnwindSafe for ClockSpeed

§

impl UnwindSafe for DistortionKind

§

impl UnwindSafe for EqFilterKind

§

impl UnwindSafe for devela::_dep::kira::effect::filter::FilterMode

§

impl UnwindSafe for Easing

§

impl UnwindSafe for StartTime

§

impl UnwindSafe for WhenToStart

§

impl UnwindSafe for Waveform

§

impl UnwindSafe for EndPosition

§

impl UnwindSafe for PlaybackPosition

§

impl UnwindSafe for PlaybackState

§

impl UnwindSafe for TrackPlaybackState

§

impl UnwindSafe for devela::_dep::log::Level

§

impl UnwindSafe for devela::_dep::log::LevelFilter

§

impl UnwindSafe for PrefilterConfig

§

impl UnwindSafe for ConnectErrorKind

§

impl UnwindSafe for Ignore

§

impl UnwindSafe for PortInfoError

§

impl UnwindSafe for devela::_dep::midir::SendError

§

impl UnwindSafe for AppleGfxApi

§

impl UnwindSafe for LinuxBackend

§

impl UnwindSafe for LinuxX11Gl

§

impl UnwindSafe for WebGLVersion

§

impl UnwindSafe for Backend

§

impl UnwindSafe for BlendFactor

§

impl UnwindSafe for BlendValue

§

impl UnwindSafe for BufferType

§

impl UnwindSafe for BufferUsage

§

impl UnwindSafe for CompareFunc

§

impl UnwindSafe for Comparison

§

impl UnwindSafe for CullFace

§

impl UnwindSafe for CursorIcon

§

impl UnwindSafe for Equation

§

impl UnwindSafe for devela::_dep::miniquad::FilterMode

§

impl UnwindSafe for FrontFaceOrder

§

impl UnwindSafe for devela::_dep::miniquad::KeyCode

§

impl UnwindSafe for MipmapFilterMode

§

impl UnwindSafe for devela::_dep::miniquad::MouseButton

§

impl UnwindSafe for PassAction

§

impl UnwindSafe for PrimitiveType

§

impl UnwindSafe for RawId

§

impl UnwindSafe for ShaderError

§

impl UnwindSafe for ShaderType

§

impl UnwindSafe for StencilOp

§

impl UnwindSafe for TextureAccess

§

impl UnwindSafe for TextureFormat

§

impl UnwindSafe for TextureKind

§

impl UnwindSafe for TextureWrap

§

impl UnwindSafe for TouchPhase

§

impl UnwindSafe for UniformType

§

impl UnwindSafe for VertexFormat

§

impl UnwindSafe for VertexStep

§

impl UnwindSafe for IOURING_OP

§

impl UnwindSafe for perf_bpf_event_type_t

§

impl UnwindSafe for perf_branch_sample_type_shift_t

§

impl UnwindSafe for perf_branch_sample_type_t

§

impl UnwindSafe for perf_callchain_context_t

§

impl UnwindSafe for perf_event_read_format_t

§

impl UnwindSafe for perf_event_sample_format_t

§

impl UnwindSafe for perf_event_type_t

§

impl UnwindSafe for perf_hw_cache_id_t

§

impl UnwindSafe for perf_hw_cache_op_id_t

§

impl UnwindSafe for perf_hw_cache_op_result_id_t

§

impl UnwindSafe for perf_hw_id_t

§

impl UnwindSafe for perf_record_ksymbol_type_t

§

impl UnwindSafe for perf_sample_regs_abi_t

§

impl UnwindSafe for perf_sw_ids_t

§

impl UnwindSafe for perf_type_id_t

§

impl UnwindSafe for ElementType

§

impl UnwindSafe for PyGILState_STATE

§

impl UnwindSafe for PyMemAllocatorDomain

§

impl UnwindSafe for PySendResult

§

impl UnwindSafe for _PyStatus_TYPE

§

impl UnwindSafe for CompareOp

§

impl UnwindSafe for Associativity

§

impl UnwindSafe for CacheInfoType

§

impl UnwindSafe for CacheType

§

impl UnwindSafe for DatType

§

impl UnwindSafe for ExtendedRegisterStateLocation

§

impl UnwindSafe for ExtendedRegisterType

§

impl UnwindSafe for Hypervisor

§

impl UnwindSafe for SgxSectionInfo

§

impl UnwindSafe for TopologyType

§

impl UnwindSafe for Yield

§

impl UnwindSafe for Panic

§

impl UnwindSafe for PoolingState

§

impl UnwindSafe for ArchivedIpAddr

§

impl UnwindSafe for ArchivedSocketAddr

§

impl UnwindSafe for OptionBoxResolver

§

impl UnwindSafe for SharingState

§

impl UnwindSafe for ValidationState

§

impl UnwindSafe for BufferSize

§

impl UnwindSafe for BuildStreamError

§

impl UnwindSafe for DefaultStreamConfigError

§

impl UnwindSafe for DeviceNameError

§

impl UnwindSafe for HostId

§

impl UnwindSafe for PauseStreamError

§

impl UnwindSafe for PlayStreamError

§

impl UnwindSafe for devela::_dep::rodio::cpal::SampleFormat

§

impl UnwindSafe for devela::_dep::rodio::cpal::StreamError

§

impl UnwindSafe for SupportedBufferSize

§

impl UnwindSafe for SupportedStreamConfigsError

§

impl UnwindSafe for DeviceInner

§

impl UnwindSafe for DevicesInner

§

impl UnwindSafe for HostInner

§

impl UnwindSafe for DecoderError

§

impl UnwindSafe for Mp4Type

§

impl UnwindSafe for DevicesError

§

impl UnwindSafe for PlayError

§

impl UnwindSafe for devela::_dep::rodio::StreamError

§

impl UnwindSafe for devela::_dep::rodio::source::Function

§

impl UnwindSafe for devela::_dep::rustix::fs::Advice

§

impl UnwindSafe for devela::_dep::rustix::fs::FileType

§

impl UnwindSafe for FlockOperation

§

impl UnwindSafe for devela::_dep::rustix::fs::SeekFrom

§

impl UnwindSafe for IoringMsgringCmds

§

impl UnwindSafe for IoringOp

§

impl UnwindSafe for IoringRegisterOp

§

impl UnwindSafe for IoringRestrictionOp

§

impl UnwindSafe for devela::_dep::rustix::ioctl::Direction

§

impl UnwindSafe for devela::_dep::rustix::mm::Advice

§

impl UnwindSafe for devela::_dep::rustix::net::Shutdown

§

impl UnwindSafe for SocketAddrAny

§

impl UnwindSafe for Timeout

§

impl UnwindSafe for DumpableBehavior

§

impl UnwindSafe for EndianMode

§

impl UnwindSafe for FloatingPointMode

§

impl UnwindSafe for MachineCheckMemoryCorruptionKillPolicy

§

impl UnwindSafe for MembarrierCommand

§

impl UnwindSafe for PTracer

§

impl UnwindSafe for Resource

§

impl UnwindSafe for devela::_dep::rustix::process::Signal

§

impl UnwindSafe for SpeculationFeature

§

impl UnwindSafe for TimeStampCounterReadability

§

impl UnwindSafe for TimingMethod

§

impl UnwindSafe for VirtualMemoryMapAddress

§

impl UnwindSafe for RebootCommand

§

impl UnwindSafe for Action

§

impl UnwindSafe for OptionalActions

§

impl UnwindSafe for QueueSelector

§

impl UnwindSafe for Capability

§

impl UnwindSafe for devela::_dep::rustix::thread::ClockId

§

impl UnwindSafe for CoreSchedulingScope

§

impl UnwindSafe for FutexOperation

§

impl UnwindSafe for LinkNameSpaceType

§

impl UnwindSafe for NanosleepRelativeResult

§

impl UnwindSafe for SecureComputingMode

§

impl UnwindSafe for SysCallUserDispatchFastSwitch

§

impl UnwindSafe for WakeOp

§

impl UnwindSafe for WakeOpCmp

§

impl UnwindSafe for TimerfdClockId

§

impl UnwindSafe for devela::_dep::symphonia::core::audio::Layout

§

impl UnwindSafe for VerificationCheck

§

impl UnwindSafe for DitherType

§

impl UnwindSafe for SeekErrorKind

§

impl UnwindSafe for SeekMode

§

impl UnwindSafe for SeekTo

§

impl UnwindSafe for SeekSearchResult

§

impl UnwindSafe for BitOrder

§

impl UnwindSafe for ColorMode

§

impl UnwindSafe for Limit

§

impl UnwindSafe for StandardTagKey

§

impl UnwindSafe for StandardVisualKey

§

impl UnwindSafe for devela::_dep::symphonia::core::meta::Value

§

impl UnwindSafe for Instantiate

§

impl UnwindSafe for devela::_dep::symphonia::core::sample::SampleFormat

§

impl UnwindSafe for DiskKind

§

impl UnwindSafe for ProcessStatus

§

impl UnwindSafe for devela::_dep::sysinfo::Signal

§

impl UnwindSafe for ThreadKind

§

impl UnwindSafe for UpdateKind

§

impl UnwindSafe for GraphemeIncomplete

§

impl UnwindSafe for Endianness

§

impl UnwindSafe for devela::_dep::winnow::error::ErrorKind

§

impl UnwindSafe for Needed

§

impl UnwindSafe for StrContext

§

impl UnwindSafe for StrContextValue

§

impl UnwindSafe for CompareResult

§

impl UnwindSafe for CheckedCastError

§

impl UnwindSafe for PodCastError

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128h

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256h

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512h

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for bf16

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for devela::_core::ascii::EscapeDefault

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for devela::_core::char::EscapeDebug

§

impl UnwindSafe for devela::_core::char::EscapeDefault

§

impl UnwindSafe for devela::_core::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for FormattingOptions

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

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 devela::_core::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicBool

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicI8

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicI16

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicI32

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicI64

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicIsize

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicU8

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicU16

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicU32

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicU64

§

impl UnwindSafe for devela::_core::sync::atomic::AtomicUsize

§

impl UnwindSafe for LocalWaker

§

impl UnwindSafe for ExampleBitfield

§

impl UnwindSafe for ExampleBitfieldCustom

§

impl UnwindSafe for ExampleBitfieldExtra

§

impl UnwindSafe for ExampleEnumSet

§

impl UnwindSafe for ExampleIdSeqUsize

§

impl UnwindSafe for Alloc

§

impl UnwindSafe for Arch

§

impl UnwindSafe for ArchivedBoxed

§

impl UnwindSafe for Backtrace

§

impl UnwindSafe for Boxed

§

impl UnwindSafe for BoxedResolver

§

impl UnwindSafe for devela::all::Color

§

impl UnwindSafe for FailedErrorConversion

§

impl UnwindSafe for devela::all::False

§

impl UnwindSafe for FatPtr

§

impl UnwindSafe for devela::all::FmtError

§

impl UnwindSafe for HasherPengy

§

impl UnwindSafe for devela::all::IoSink

§

impl UnwindSafe for LINUX_ERRNO

§

impl UnwindSafe for LINUX_FILENO

§

impl UnwindSafe for LINUX_IOCTL

§

impl UnwindSafe for LINUX_SIGACTION

§

impl UnwindSafe for LINUX_SIGNAL

§

impl UnwindSafe for LINUX_SYS_AARCH64

§

impl UnwindSafe for LINUX_SYS_ARM

§

impl UnwindSafe for LINUX_SYS_RISCV

§

impl UnwindSafe for LINUX_SYS_X86

§

impl UnwindSafe for LINUX_SYS_X86_64

§

impl UnwindSafe for LINUX_TERMIOS_CFLAG

§

impl UnwindSafe for LINUX_TERMIOS_IFLAG

§

impl UnwindSafe for LINUX_TERMIOS_LFLAG

§

impl UnwindSafe for LINUX_TERMIOS_OFLAG

§

impl UnwindSafe for devela::all::Layout

§

impl UnwindSafe for devela::all::LayoutError

§

impl UnwindSafe for Lgc16

§

impl UnwindSafe for LinuxSigaction

§

impl UnwindSafe for LinuxSigset

§

impl UnwindSafe for LinuxTerminal

§

impl UnwindSafe for LinuxTerminalSize

§

impl UnwindSafe for LinuxTermios

§

impl UnwindSafe for LinuxTimespec

§

impl UnwindSafe for Mem

§

impl UnwindSafe for NotImplemented

§

impl UnwindSafe for NotSupported

§

impl UnwindSafe for devela::all::Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Pnm

§

impl UnwindSafe for Ptr

§

impl UnwindSafe for RandomState

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for Str

§

impl UnwindSafe for devela::all::String

§

impl UnwindSafe for devela::all::True

§

impl UnwindSafe for devela::all::TryFromIntError

§

impl UnwindSafe for WaveletHaar

§

impl UnwindSafe for WaveletUnitVec

§

impl UnwindSafe for Xabc

§

impl UnwindSafe for XorShift8

§

impl UnwindSafe for XorShift16

§

impl UnwindSafe for XorShift32

§

impl UnwindSafe for XorShift64

§

impl UnwindSafe for XorShift128

§

impl UnwindSafe for XorShift128p

§

impl UnwindSafe for Xoroshiro128pp

§

impl UnwindSafe for Xyza8a

§

impl UnwindSafe for Xyza8b

§

impl UnwindSafe for m128

§

impl UnwindSafe for m128d

§

impl UnwindSafe for m128i

§

impl UnwindSafe for m256

§

impl UnwindSafe for m256d

§

impl UnwindSafe for m256i

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for DataOverflow

§

impl UnwindSafe for ElementNotFound

§

impl UnwindSafe for IdPinBox

§

impl UnwindSafe for IndexOutOfBounds

§

impl UnwindSafe for InvalidAxisLength

§

impl UnwindSafe for KeyAlreadyExists

§

impl UnwindSafe for MismatchedCapacity

§

impl UnwindSafe for MismatchedDimensions

§

impl UnwindSafe for MismatchedIndices

§

impl UnwindSafe for NodeEmpty

§

impl UnwindSafe for NodeLinkNotSet

§

impl UnwindSafe for NodeLinkNotUnique

§

impl UnwindSafe for NotEnoughElements

§

impl UnwindSafe for NotEnoughSpace

§

impl UnwindSafe for PartiallyAdded

§

impl UnwindSafe for devela::lang::CStr

§

impl UnwindSafe for devela::lang::CString

§

impl UnwindSafe for OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for Duration

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for devela::phys::SystemTimeError

§

impl UnwindSafe for Timecode

§

impl UnwindSafe for UnixTimeI64

§

impl UnwindSafe for UnixTimeU32

§

impl UnwindSafe for Env

§

impl UnwindSafe for ByteSearch

§

impl UnwindSafe for Char

§

impl UnwindSafe for GraphemeString

§

impl UnwindSafe for InvalidChar

§

impl UnwindSafe for InvalidUtf8

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for char7

§

impl UnwindSafe for char8

§

impl UnwindSafe for char16

§

impl UnwindSafe for devela::work::AtomicBool

§

impl UnwindSafe for AtomicF32

§

impl UnwindSafe for AtomicF64

§

impl UnwindSafe for devela::work::AtomicI8

§

impl UnwindSafe for devela::work::AtomicI16

§

impl UnwindSafe for devela::work::AtomicI32

§

impl UnwindSafe for devela::work::AtomicI64

§

impl UnwindSafe for AtomicI128

§

impl UnwindSafe for devela::work::AtomicIsize

§

impl UnwindSafe for devela::work::AtomicU8

§

impl UnwindSafe for devela::work::AtomicU16

§

impl UnwindSafe for devela::work::AtomicU32

§

impl UnwindSafe for devela::work::AtomicU64

§

impl UnwindSafe for AtomicU128

§

impl UnwindSafe for devela::work::AtomicUsize

§

impl UnwindSafe for Barrier

§

impl UnwindSafe for BarrierWaitResult

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for Thread

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for Builder

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for devela::_dep::_alloc::alloc::Global

§

impl UnwindSafe for UnorderedKeyError

§

impl UnwindSafe for devela::_dep::_alloc::collections::TryReserveError

§

impl UnwindSafe for FromVecWithNulError

§

impl UnwindSafe for IntoStringError

§

impl UnwindSafe for NulError

§

impl UnwindSafe for devela::_dep::_alloc::string::FromUtf8Error

§

impl UnwindSafe for devela::_dep::_alloc::string::FromUtf16Error

§

impl UnwindSafe for IntoChars

§

impl UnwindSafe for devela::_dep::_std::alloc::System

§

impl UnwindSafe for BacktraceFrame

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for devela::_dep::_std::fs::DirEntry

§

impl UnwindSafe for devela::_dep::_std::fs::File

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for devela::_dep::_std::fs::FileType

§

impl UnwindSafe for devela::_dep::_std::fs::Metadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for ReadDir

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for devela::_dep::_std::io::Empty

§

impl UnwindSafe for devela::_dep::_std::io::Repeat

§

impl UnwindSafe for devela::_dep::_std::io::Stdin

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for UdpSocket

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for stat

§

impl UnwindSafe for devela::_dep::_std::os::unix::net::SocketAddr

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for devela::_dep::_std::os::unix::net::UCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for PipeReader

§

impl UnwindSafe for PipeWriter

§

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 DefaultRandomSource

§

impl UnwindSafe for RecvError

§

impl UnwindSafe for devela::_dep::_std::time::SystemTimeError

§

impl UnwindSafe for devela::_dep::bumpalo::collections::string::FromUtf16Error

§

impl UnwindSafe for AllocErr

§

impl UnwindSafe for DisableBlinking

§

impl UnwindSafe for EnableBlinking

§

impl UnwindSafe for Hide

§

impl UnwindSafe for MoveDown

§

impl UnwindSafe for MoveLeft

§

impl UnwindSafe for MoveRight

§

impl UnwindSafe for MoveTo

§

impl UnwindSafe for MoveToColumn

§

impl UnwindSafe for MoveToNextLine

§

impl UnwindSafe for MoveToPreviousLine

§

impl UnwindSafe for MoveToRow

§

impl UnwindSafe for MoveUp

§

impl UnwindSafe for RestorePosition

§

impl UnwindSafe for SavePosition

§

impl UnwindSafe for Show

§

impl UnwindSafe for DisableBracketedPaste

§

impl UnwindSafe for DisableFocusChange

§

impl UnwindSafe for DisableMouseCapture

§

impl UnwindSafe for EnableBracketedPaste

§

impl UnwindSafe for EnableFocusChange

§

impl UnwindSafe for EnableMouseCapture

§

impl UnwindSafe for KeyEvent

§

impl UnwindSafe for KeyEventState

§

impl UnwindSafe for KeyModifiers

§

impl UnwindSafe for KeyboardEnhancementFlags

§

impl UnwindSafe for MouseEvent

§

impl UnwindSafe for PopKeyboardEnhancementFlags

§

impl UnwindSafe for PushKeyboardEnhancementFlags

§

impl UnwindSafe for devela::_dep::crossterm::style::Attributes

§

impl UnwindSafe for Colors

§

impl UnwindSafe for ContentStyle

§

impl UnwindSafe for ResetColor

§

impl UnwindSafe for SetAttribute

§

impl UnwindSafe for SetAttributes

§

impl UnwindSafe for SetBackgroundColor

§

impl UnwindSafe for SetColors

§

impl UnwindSafe for SetForegroundColor

§

impl UnwindSafe for SetStyle

§

impl UnwindSafe for SetUnderlineColor

§

impl UnwindSafe for BeginSynchronizedUpdate

§

impl UnwindSafe for Clear

§

impl UnwindSafe for DisableLineWrap

§

impl UnwindSafe for EnableLineWrap

§

impl UnwindSafe for EndSynchronizedUpdate

§

impl UnwindSafe for EnterAlternateScreen

§

impl UnwindSafe for LeaveAlternateScreen

§

impl UnwindSafe for ScrollDown

§

impl UnwindSafe for ScrollUp

§

impl UnwindSafe for SetSize

§

impl UnwindSafe for WindowSize

§

impl UnwindSafe for devela::_dep::jiff::civil::Date

§

impl UnwindSafe for DateArithmetic

§

impl UnwindSafe for DateDifference

§

impl UnwindSafe for DateSeries

§

impl UnwindSafe for DateTime

§

impl UnwindSafe for DateTimeArithmetic

§

impl UnwindSafe for DateTimeDifference

§

impl UnwindSafe for DateTimeRound

§

impl UnwindSafe for DateTimeSeries

§

impl UnwindSafe for DateTimeWith

§

impl UnwindSafe for DateWith

§

impl UnwindSafe for ISOWeekDate

§

impl UnwindSafe for devela::_dep::jiff::civil::Time

§

impl UnwindSafe for TimeArithmetic

§

impl UnwindSafe for TimeDifference

§

impl UnwindSafe for TimeRound

§

impl UnwindSafe for TimeSeries

§

impl UnwindSafe for TimeWith

§

impl UnwindSafe for WeekdaysForward

§

impl UnwindSafe for WeekdaysReverse

§

impl UnwindSafe for devela::_dep::jiff::fmt::friendly::SpanParser

§

impl UnwindSafe for devela::_dep::jiff::fmt::friendly::SpanPrinter

§

impl UnwindSafe for devela::_dep::jiff::fmt::rfc2822::DateTimeParser

§

impl UnwindSafe for devela::_dep::jiff::fmt::rfc2822::DateTimePrinter

§

impl UnwindSafe for BrokenDownTime

§

impl UnwindSafe for devela::_dep::jiff::fmt::temporal::DateTimeParser

§

impl UnwindSafe for devela::_dep::jiff::fmt::temporal::DateTimePrinter

§

impl UnwindSafe for PiecesNumericOffset

§

impl UnwindSafe for devela::_dep::jiff::fmt::temporal::SpanParser

§

impl UnwindSafe for devela::_dep::jiff::fmt::temporal::SpanPrinter

§

impl UnwindSafe for SignedDuration

§

impl UnwindSafe for SignedDurationRound

§

impl UnwindSafe for devela::_dep::jiff::Span

§

impl UnwindSafe for Timestamp

§

impl UnwindSafe for TimestampArithmetic

§

impl UnwindSafe for TimestampDifference

§

impl UnwindSafe for TimestampDisplayWithOffset

§

impl UnwindSafe for TimestampRound

§

impl UnwindSafe for TimestampSeries

§

impl UnwindSafe for Zoned

§

impl UnwindSafe for ZonedArithmetic

§

impl UnwindSafe for ZonedRound

§

impl UnwindSafe for ZonedWith

§

impl UnwindSafe for AmbiguousTimestamp

§

impl UnwindSafe for AmbiguousZoned

§

impl UnwindSafe for Offset

§

impl UnwindSafe for OffsetArithmetic

§

impl UnwindSafe for TimeZone

§

impl UnwindSafe for TimeZoneDatabase

§

impl UnwindSafe for TimeZoneNameIter

§

impl UnwindSafe for Collator

§

impl UnwindSafe for DateTimeFormat

§

impl UnwindSafe for NumberFormat

§

impl UnwindSafe for PluralRules

§

impl UnwindSafe for RelativeTimeFormat

§

impl UnwindSafe for CompileError

§

impl UnwindSafe for Exception

§

impl UnwindSafe for devela::_dep::js_sys::WebAssembly::Global

§

impl UnwindSafe for Instance

§

impl UnwindSafe for LinkError

§

impl UnwindSafe for Memory

§

impl UnwindSafe for Module

§

impl UnwindSafe for RuntimeError

§

impl UnwindSafe for Table

§

impl UnwindSafe for devela::_dep::js_sys::WebAssembly::Tag

§

impl UnwindSafe for devela::_dep::js_sys::Array

§

impl UnwindSafe for ArrayBuffer

§

impl UnwindSafe for ArrayIntoIter

§

impl UnwindSafe for AsyncIterator

§

impl UnwindSafe for BigInt64Array

§

impl UnwindSafe for BigInt

§

impl UnwindSafe for BigUint64Array

§

impl UnwindSafe for Boolean

§

impl UnwindSafe for DataView

§

impl UnwindSafe for devela::_dep::js_sys::Date

§

impl UnwindSafe for devela::_dep::js_sys::Error

§

impl UnwindSafe for EvalError

§

impl UnwindSafe for Float32Array

§

impl UnwindSafe for Float64Array

§

impl UnwindSafe for devela::_dep::js_sys::Function

§

impl UnwindSafe for Generator

§

impl UnwindSafe for Int8Array

§

impl UnwindSafe for Int16Array

§

impl UnwindSafe for Int32Array

§

impl UnwindSafe for devela::_dep::js_sys::IntoIter

§

impl UnwindSafe for Iterator

§

impl UnwindSafe for IteratorNext

§

impl UnwindSafe for JsString

§

impl UnwindSafe for devela::_dep::js_sys::Map

§

impl UnwindSafe for devela::_dep::js_sys::Number

§

impl UnwindSafe for Object

§

impl UnwindSafe for Promise

§

impl UnwindSafe for Proxy

§

impl UnwindSafe for RangeError

§

impl UnwindSafe for ReferenceError

§

impl UnwindSafe for RegExp

§

impl UnwindSafe for Set

§

impl UnwindSafe for SharedArrayBuffer

§

impl UnwindSafe for Symbol

§

impl UnwindSafe for SyntaxError

§

impl UnwindSafe for devela::_dep::js_sys::TryFromIntError

§

impl UnwindSafe for TypeError

§

impl UnwindSafe for Uint8Array

§

impl UnwindSafe for Uint8ClampedArray

§

impl UnwindSafe for Uint16Array

§

impl UnwindSafe for Uint32Array

§

impl UnwindSafe for UriError

§

impl UnwindSafe for WeakMap

§

impl UnwindSafe for WeakSet

§

impl UnwindSafe for CpalBackend

§

impl UnwindSafe for CpalBackendSettings

§

impl UnwindSafe for MockBackend

§

impl UnwindSafe for MockBackendSettings

§

impl UnwindSafe for devela::_dep::kira::clock::ClockId

§

impl UnwindSafe for ClockTime

§

impl UnwindSafe for CompressorBuilder

§

impl UnwindSafe for DistortionBuilder

§

impl UnwindSafe for EqFilterBuilder

§

impl UnwindSafe for FilterBuilder

§

impl UnwindSafe for PanningControlBuilder

§

impl UnwindSafe for ReverbBuilder

§

impl UnwindSafe for VolumeControlBuilder

§

impl UnwindSafe for ClockInfo

§

impl UnwindSafe for ListenerInfo

§

impl UnwindSafe for MockInfoBuilder

§

impl UnwindSafe for ListenerId

§

impl UnwindSafe for LfoBuilder

§

impl UnwindSafe for ModulatorId

§

impl UnwindSafe for TweenerBuilder

§

impl UnwindSafe for StaticSoundData

§

impl UnwindSafe for StaticSoundSettings

§

impl UnwindSafe for StreamingSoundSettings

§

impl UnwindSafe for Region

§

impl UnwindSafe for Capacities

§

impl UnwindSafe for Decibels

§

impl UnwindSafe for Frame

§

impl UnwindSafe for devela::_dep::kira::Mix

§

impl UnwindSafe for Panning

§

impl UnwindSafe for PlaybackRate

§

impl UnwindSafe for ResourceLimitReached

§

impl UnwindSafe for Semitones

§

impl UnwindSafe for Tween

§

impl UnwindSafe for NonexistentRoute

§

impl UnwindSafe for SendTrackId

§

impl UnwindSafe for SpatialTrackDistances

§

impl UnwindSafe for devela::_dep::log::ParseLevelError

§

impl UnwindSafe for SetLoggerError

§

impl UnwindSafe for devela::_dep::memchr::arch::all::memchr::One

§

impl UnwindSafe for devela::_dep::memchr::arch::all::memchr::Three

§

impl UnwindSafe for devela::_dep::memchr::arch::all::memchr::Two

§

impl UnwindSafe for devela::_dep::memchr::arch::all::packedpair::Finder

§

impl UnwindSafe for Pair

§

impl UnwindSafe for devela::_dep::memchr::arch::all::rabinkarp::Finder

§

impl UnwindSafe for devela::_dep::memchr::arch::all::rabinkarp::FinderRev

§

impl UnwindSafe for devela::_dep::memchr::arch::all::shiftor::Finder

§

impl UnwindSafe for devela::_dep::memchr::arch::all::twoway::Finder

§

impl UnwindSafe for devela::_dep::memchr::arch::all::twoway::FinderRev

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::avx2::memchr::One

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::avx2::memchr::Three

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::avx2::memchr::Two

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::avx2::packedpair::Finder

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::sse2::memchr::One

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::sse2::memchr::Three

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::sse2::memchr::Two

§

impl UnwindSafe for devela::_dep::memchr::arch::x86_64::sse2::packedpair::Finder

§

impl UnwindSafe for FinderBuilder

§

impl UnwindSafe for InitError

§

impl UnwindSafe for MidiInput

§

impl UnwindSafe for MidiInputPort

§

impl UnwindSafe for MidiOutput

§

impl UnwindSafe for MidiOutputConnection

§

impl UnwindSafe for MidiOutputPort

§

impl UnwindSafe for Conf

§

impl UnwindSafe for Icon

§

impl UnwindSafe for Platform

§

impl UnwindSafe for Bindings

§

impl UnwindSafe for BlendState

§

impl UnwindSafe for BufferId

§

impl UnwindSafe for BufferLayout

§

impl UnwindSafe for ContextInfo

§

impl UnwindSafe for ElapsedQuery

§

impl UnwindSafe for Features

§

impl UnwindSafe for GlContext

§

impl UnwindSafe for GlslSupport

§

impl UnwindSafe for KeyMods

§

impl UnwindSafe for Pipeline

§

impl UnwindSafe for PipelineLayout

§

impl UnwindSafe for PipelineParams

§

impl UnwindSafe for RenderPass

§

impl UnwindSafe for ShaderId

§

impl UnwindSafe for ShaderMeta

§

impl UnwindSafe for StencilFaceState

§

impl UnwindSafe for StencilState

§

impl UnwindSafe for TextureId

§

impl UnwindSafe for TextureParams

§

impl UnwindSafe for Touch

§

impl UnwindSafe for UniformBlockLayout

§

impl UnwindSafe for UniformDesc

§

impl UnwindSafe for VertexAttribute

§

impl UnwindSafe for devela::_dep::nc::c_str::CStr

§

impl UnwindSafe for devela::_dep::nc::c_str::CString

§

impl UnwindSafe for devela::_dep::nc::path::Path

§

impl UnwindSafe for __kernel_fsid_t

§

impl UnwindSafe for aio_sigset_t

§

impl UnwindSafe for blk_io_trace_remap_t

§

impl UnwindSafe for blk_io_trace_t

§

impl UnwindSafe for blk_user_trace_setup_t

§

impl UnwindSafe for bpf_attr_btf_load_t

§

impl UnwindSafe for bpf_attr_element_t

§

impl UnwindSafe for bpf_attr_getid_t

§

impl UnwindSafe for bpf_attr_info_t

§

impl UnwindSafe for bpf_attr_map_create_t

§

impl UnwindSafe for bpf_attr_obj_t

§

impl UnwindSafe for bpf_attr_prog_attach_t

§

impl UnwindSafe for bpf_attr_prog_load_t

§

impl UnwindSafe for bpf_attr_prog_test_t

§

impl UnwindSafe for bpf_attr_query_t

§

impl UnwindSafe for bpf_attr_raw_tracepoint_t

§

impl UnwindSafe for bpf_attr_task_fd_query_t

§

impl UnwindSafe for bpf_btf_info_t

§

impl UnwindSafe for bpf_cgroup_dev_ctx_t

§

impl UnwindSafe for bpf_cgroup_storage_key_t

§

impl UnwindSafe for bpf_fib_lookup_t

§

impl UnwindSafe for bpf_flow_keys_ipv4_t

§

impl UnwindSafe for bpf_flow_keys_ipv6_t

§

impl UnwindSafe for bpf_flow_keys_t

§

impl UnwindSafe for bpf_func_info_t

§

impl UnwindSafe for bpf_insn_t

§

impl UnwindSafe for bpf_line_info_t

§

impl UnwindSafe for bpf_lpm_trie_key_t

§

impl UnwindSafe for bpf_map_info_t

§

impl UnwindSafe for bpf_perf_event_value_t

§

impl UnwindSafe for bpf_prog_info_t

§

impl UnwindSafe for bpf_raw_tracepoint_args_t

§

impl UnwindSafe for bpf_sock_addr_t

§

impl UnwindSafe for bpf_sock_ops_t

§

impl UnwindSafe for bpf_sock_t

§

impl UnwindSafe for bpf_sock_tuple_ipv4_t

§

impl UnwindSafe for bpf_sock_tuple_ipv6_t

§

impl UnwindSafe for bpf_spin_lock_t

§

impl UnwindSafe for bpf_stack_build_id_t

§

impl UnwindSafe for bpf_tcp_sock_t

§

impl UnwindSafe for cachestat_range_t

§

impl UnwindSafe for cachestat_t

§

impl UnwindSafe for cap_user_data_t

§

impl UnwindSafe for cap_user_header_t

§

impl UnwindSafe for clone_args_t

§

impl UnwindSafe for cmsghdr_t

§

impl UnwindSafe for compat_statfs64_t

§

impl UnwindSafe for cpu_set_t

§

impl UnwindSafe for epoll_event_t

§

impl UnwindSafe for f_owner_ex_t

§

impl UnwindSafe for fd_set_t

§

impl UnwindSafe for fiemap_extent_t

§

impl UnwindSafe for fiemap_t

§

impl UnwindSafe for file_clone_range_t

§

impl UnwindSafe for file_dedupe_range_info_t

§

impl UnwindSafe for file_dedupe_range_t

§

impl UnwindSafe for file_handle_t

§

impl UnwindSafe for files_stat_struct_t

§

impl UnwindSafe for flock64_t

§

impl UnwindSafe for flock_t

§

impl UnwindSafe for fscrypt_policy_t

§

impl UnwindSafe for fsid_t

§

impl UnwindSafe for fstrim_range_t

§

impl UnwindSafe for fsxattr_t

§

impl UnwindSafe for futex_waitv_t

§

impl UnwindSafe for getcpu_cache_t

§

impl UnwindSafe for group_filter_t

§

impl UnwindSafe for group_req_t

§

impl UnwindSafe for group_source_req_t

§

impl UnwindSafe for if_dqblk_t

§

impl UnwindSafe for if_dqinfo_t

§

impl UnwindSafe for if_nextdqblk_t

§

impl UnwindSafe for in6_addr_t

§

impl UnwindSafe for in6_flowlabel_req_t

§

impl UnwindSafe for in_addr_t

§

impl UnwindSafe for in_pktinfo_t

§

impl UnwindSafe for inodes_stat_t

§

impl UnwindSafe for inotify_event_t

§

impl UnwindSafe for io_cqring_offsets_t

§

impl UnwindSafe for io_event_t

§

impl UnwindSafe for io_file_t

§

impl UnwindSafe for io_sqring_offsets_t

§

impl UnwindSafe for io_uring_cqe_t

§

impl UnwindSafe for io_uring_files_update_t

§

impl UnwindSafe for io_uring_params_t

§

impl UnwindSafe for io_uring_probe_op_t

§

impl UnwindSafe for io_uring_probe_t

§

impl UnwindSafe for io_uring_sqe_buf_t

§

impl UnwindSafe for io_uring_sqe_t

§

impl UnwindSafe for iocb_t

§

impl UnwindSafe for iovec_t

§

impl UnwindSafe for ip_mreq_source_t

§

impl UnwindSafe for ip_mreq_t

§

impl UnwindSafe for ip_mreqn_t

§

impl UnwindSafe for ip_msfilter_t

§

impl UnwindSafe for ipc64_perm_t

§

impl UnwindSafe for ipc_kludge_t

§

impl UnwindSafe for ipc_perm_t

§

impl UnwindSafe for ipv6_mreq_t

§

impl UnwindSafe for itimerspec64_t

§

impl UnwindSafe for itimerspec_t

§

impl UnwindSafe for itimerval_t

§

impl UnwindSafe for kcmp_epoll_slot_t

§

impl UnwindSafe for kernel_itimerspec_t

§

impl UnwindSafe for kernel_sock_timeval_t

§

impl UnwindSafe for kernel_sockaddr_storage_t

§

impl UnwindSafe for kernel_timespec_t

§

impl UnwindSafe for kernel_timex_t

§

impl UnwindSafe for kernel_timex_timeval_t

§

impl UnwindSafe for kernle_old_timeval_t

§

impl UnwindSafe for kexec_segment_t

§

impl UnwindSafe for ktermios_t

§

impl UnwindSafe for linger_t

§

impl UnwindSafe for linux_dirent64_t

§

impl UnwindSafe for linux_dirent_t

§

impl UnwindSafe for mmsghdr_t

§

impl UnwindSafe for mnt_id_req_t

§

impl UnwindSafe for mount_attr_t

§

impl UnwindSafe for mq_attr_t

§

impl UnwindSafe for msgbuf_t

§

impl UnwindSafe for msghdr_t

§

impl UnwindSafe for msginfo_t

§

impl UnwindSafe for msqid64_ds_t

§

impl UnwindSafe for msqid_ds_t

§

impl UnwindSafe for new_utsname_t

§

impl UnwindSafe for open_how_t

§

impl UnwindSafe for perf_branch_entry_t

§

impl UnwindSafe for perf_event_attr_t

§

impl UnwindSafe for perf_event_header_t

§

impl UnwindSafe for perf_event_mmap_page_cap_detail_t

§

impl UnwindSafe for perf_event_mmap_page_t

§

impl UnwindSafe for perf_event_query_bpf_t

§

impl UnwindSafe for perf_mem_data_mem_t

§

impl UnwindSafe for pollfd_t

§

impl UnwindSafe for prctl_mm_map_t

§

impl UnwindSafe for pthread_barrierattr_t

§

impl UnwindSafe for pthread_condattr_t

§

impl UnwindSafe for pthread_mutexattr_t

§

impl UnwindSafe for pthread_rwlockattr_t

§

impl UnwindSafe for ptrace_peeksiginfo_args_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_entry_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_exit_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_seccomp_t

§

impl UnwindSafe for ptrace_syscall_info_t

§

impl UnwindSafe for rlimit64_t

§

impl UnwindSafe for rlimit_t

§

impl UnwindSafe for robust_list_head_t

§

impl UnwindSafe for robust_list_t

§

impl UnwindSafe for rseq_cs_ptr_t

§

impl UnwindSafe for rseq_cs_t

§

impl UnwindSafe for rseq_t

§

impl UnwindSafe for rusage_t

§

impl UnwindSafe for sched_attr_t

§

impl UnwindSafe for sched_param_t

§

impl UnwindSafe for scm_timestamping_internal_t

§

impl UnwindSafe for seccomp_data_t

§

impl UnwindSafe for seccomp_metadata_t

§

impl UnwindSafe for seccomp_notif_resp_t

§

impl UnwindSafe for seccomp_notif_sizes_t

§

impl UnwindSafe for seccomp_notif_t

§

impl UnwindSafe for sembuf_t

§

impl UnwindSafe for semid_ds_t

§

impl UnwindSafe for seminfo_t

§

impl UnwindSafe for serial_icounter_struct_t

§

impl UnwindSafe for serial_iso7816_t

§

impl UnwindSafe for serial_multiport_struct_t

§

impl UnwindSafe for serial_rs485_t

§

impl UnwindSafe for serial_struct_t

§

impl UnwindSafe for shm_info_t

§

impl UnwindSafe for shmid64_ds_t

§

impl UnwindSafe for shmid_ds_t

§

impl UnwindSafe for shminfo64_t

§

impl UnwindSafe for shminfo_t

§

impl UnwindSafe for si_kill_t

§

impl UnwindSafe for si_rt_t

§

impl UnwindSafe for si_sigchld_t

§

impl UnwindSafe for si_sigpoll_t

§

impl UnwindSafe for si_sigsys_t

§

impl UnwindSafe for si_timer_t

§

impl UnwindSafe for sigaction_t

§

impl UnwindSafe for sigaltstack_t

§

impl UnwindSafe for sigev_thread_t

§

impl UnwindSafe for sigevent_t

§

impl UnwindSafe for siginfo_intern_t

§

impl UnwindSafe for sigset_t

§

impl UnwindSafe for sk_msg_md_t

§

impl UnwindSafe for sk_reuseport_md_t

§

impl UnwindSafe for sockaddr_in6_t

§

impl UnwindSafe for sockaddr_in_t

§

impl UnwindSafe for sockaddr_t

§

impl UnwindSafe for stat_t

§

impl UnwindSafe for statfs64_t

§

impl UnwindSafe for statfs_t

§

impl UnwindSafe for statmount_t

§

impl UnwindSafe for statx_t

§

impl UnwindSafe for statx_timestamp_t

§

impl UnwindSafe for sysctl_args_t

§

impl UnwindSafe for sysinfo_t

§

impl UnwindSafe for termio_t

§

impl UnwindSafe for termios2_t

§

impl UnwindSafe for termios_t

§

impl UnwindSafe for timespec64_t

§

impl UnwindSafe for timespec_t

§

impl UnwindSafe for timeval_t

§

impl UnwindSafe for timex_t

§

impl UnwindSafe for timezone_t

§

impl UnwindSafe for tms_t

§

impl UnwindSafe for ucred_t

§

impl UnwindSafe for user_desc_t

§

impl UnwindSafe for ustat_t

§

impl UnwindSafe for utimbuf_t

§

impl UnwindSafe for winsize_t

§

impl UnwindSafe for xdp_md_t

§

impl UnwindSafe for devela::_dep::nc::util::File

§

impl UnwindSafe for CancelledError

§

impl UnwindSafe for IncompleteReadError

§

impl UnwindSafe for InvalidStateError

§

impl UnwindSafe for LimitOverrunError

§

impl UnwindSafe for QueueEmpty

§

impl UnwindSafe for QueueFull

§

impl UnwindSafe for TimeoutError

§

impl UnwindSafe for gaierror

§

impl UnwindSafe for herror

§

impl UnwindSafe for timeout

§

impl UnwindSafe for PyArithmeticError

§

impl UnwindSafe for PyAssertionError

§

impl UnwindSafe for PyAttributeError

§

impl UnwindSafe for PyBaseException

§

impl UnwindSafe for PyBlockingIOError

§

impl UnwindSafe for PyBrokenPipeError

§

impl UnwindSafe for PyBufferError

§

impl UnwindSafe for PyBytesWarning

§

impl UnwindSafe for PyChildProcessError

§

impl UnwindSafe for PyConnectionAbortedError

§

impl UnwindSafe for PyConnectionError

§

impl UnwindSafe for PyConnectionRefusedError

§

impl UnwindSafe for PyConnectionResetError

§

impl UnwindSafe for PyDeprecationWarning

§

impl UnwindSafe for PyEOFError

§

impl UnwindSafe for PyEncodingWarning

§

impl UnwindSafe for PyEnvironmentError

§

impl UnwindSafe for PyException

§

impl UnwindSafe for PyFileExistsError

§

impl UnwindSafe for PyFileNotFoundError

§

impl UnwindSafe for PyFloatingPointError

§

impl UnwindSafe for PyFutureWarning

§

impl UnwindSafe for PyGeneratorExit

§

impl UnwindSafe for PyIOError

§

impl UnwindSafe for PyImportError

§

impl UnwindSafe for PyImportWarning

§

impl UnwindSafe for PyIndexError

§

impl UnwindSafe for PyInterruptedError

§

impl UnwindSafe for PyIsADirectoryError

§

impl UnwindSafe for PyKeyError

§

impl UnwindSafe for PyKeyboardInterrupt

§

impl UnwindSafe for PyLookupError

§

impl UnwindSafe for PyMemoryError

§

impl UnwindSafe for PyModuleNotFoundError

§

impl UnwindSafe for PyNameError

§

impl UnwindSafe for PyNotADirectoryError

§

impl UnwindSafe for PyNotImplementedError

§

impl UnwindSafe for PyOSError

§

impl UnwindSafe for PyOverflowError

§

impl UnwindSafe for PyPendingDeprecationWarning

§

impl UnwindSafe for PyPermissionError

§

impl UnwindSafe for PyProcessLookupError

§

impl UnwindSafe for PyRecursionError

§

impl UnwindSafe for PyReferenceError

§

impl UnwindSafe for PyResourceWarning

§

impl UnwindSafe for PyRuntimeError

§

impl UnwindSafe for PyRuntimeWarning

§

impl UnwindSafe for PyStopAsyncIteration

§

impl UnwindSafe for PyStopIteration

§

impl UnwindSafe for PySyntaxError

§

impl UnwindSafe for PySyntaxWarning

§

impl UnwindSafe for PySystemError

§

impl UnwindSafe for PySystemExit

§

impl UnwindSafe for PyTimeoutError

§

impl UnwindSafe for PyTypeError

§

impl UnwindSafe for PyUnboundLocalError

§

impl UnwindSafe for PyUnicodeDecodeError

§

impl UnwindSafe for PyUnicodeEncodeError

§

impl UnwindSafe for PyUnicodeError

§

impl UnwindSafe for PyUnicodeTranslateError

§

impl UnwindSafe for PyUnicodeWarning

§

impl UnwindSafe for PyUserWarning

§

impl UnwindSafe for PyValueError

§

impl UnwindSafe for PyWarning

§

impl UnwindSafe for PyZeroDivisionError

§

impl UnwindSafe for PyASCIIObject

§

impl UnwindSafe for PyAsyncMethods

§

impl UnwindSafe for PyBaseExceptionObject

§

impl UnwindSafe for PyBufferProcs

§

impl UnwindSafe for PyByteArrayObject

§

impl UnwindSafe for PyBytesObject

§

impl UnwindSafe for PyCFunctionObject

§

impl UnwindSafe for PyCMethodObject

§

impl UnwindSafe for PyCodeObject

§

impl UnwindSafe for PyCompactUnicodeObject

§

impl UnwindSafe for PyCompilerFlags

§

impl UnwindSafe for PyComplexObject

§

impl UnwindSafe for PyConfig

§

impl UnwindSafe for PyDateTime_CAPI

§

impl UnwindSafe for PyDateTime_Date

§

impl UnwindSafe for PyDateTime_DateTime

§

impl UnwindSafe for PyDateTime_Delta

§

impl UnwindSafe for PyDateTime_Time

§

impl UnwindSafe for PyDescrObject

§

impl UnwindSafe for PyDictKeysObject

§

impl UnwindSafe for PyDictObject

§

impl UnwindSafe for PyFloatObject

§

impl UnwindSafe for PyFrameObject

§

impl UnwindSafe for PyFunctionObject

§

impl UnwindSafe for PyFutureFeatures

§

impl UnwindSafe for PyGenObject

§

impl UnwindSafe for PyGetSetDef

§

impl UnwindSafe for PyGetSetDescrObject

§

impl UnwindSafe for PyHash_FuncDef

§

impl UnwindSafe for PyHeapTypeObject

§

impl UnwindSafe for PyImportErrorObject

§

impl UnwindSafe for PyInterpreterState

§

impl UnwindSafe for PyListObject

§

impl UnwindSafe for PyLongObject

§

impl UnwindSafe for PyMappingMethods

§

impl UnwindSafe for PyMemAllocatorEx

§

impl UnwindSafe for PyMemberDef

§

impl UnwindSafe for PyMemberDescrObject

§

impl UnwindSafe for devela::_dep::pyo3::ffi::PyMethodDef

§

impl UnwindSafe for PyMethodDescrObject

§

impl UnwindSafe for PyModuleDef

§

impl UnwindSafe for PyModuleDef_Base

§

impl UnwindSafe for PyModuleDef_Slot

§

impl UnwindSafe for PyNumberMethods

§

impl UnwindSafe for PyOSErrorObject

§

impl UnwindSafe for PyObject

§

impl UnwindSafe for PyObjectArenaAllocator

§

impl UnwindSafe for PyPreConfig

§

impl UnwindSafe for PySequenceMethods

§

impl UnwindSafe for PySetObject

§

impl UnwindSafe for PySliceObject

§

impl UnwindSafe for PyStatus

§

impl UnwindSafe for PyStopIterationObject

§

impl UnwindSafe for PyStructSequence_Desc

§

impl UnwindSafe for PyStructSequence_Field

§

impl UnwindSafe for PySyntaxErrorObject

§

impl UnwindSafe for PySystemExitObject

§

impl UnwindSafe for PyThreadState

§

impl UnwindSafe for PyTryBlock

§

impl UnwindSafe for PyTupleObject

§

impl UnwindSafe for PyTypeObject

§

impl UnwindSafe for PyType_Slot

§

impl UnwindSafe for PyType_Spec

§

impl UnwindSafe for PyUnicodeErrorObject

§

impl UnwindSafe for PyUnicodeObject

§

impl UnwindSafe for PyVarObject

§

impl UnwindSafe for PyWideStringList

§

impl UnwindSafe for PyWrapperDescrObject

§

impl UnwindSafe for Py_buffer

§

impl UnwindSafe for Py_complex

§

impl UnwindSafe for _PyDateTime_BaseDateTime

§

impl UnwindSafe for _PyDateTime_BaseTime

§

impl UnwindSafe for _PyErr_StackItem

§

impl UnwindSafe for _PyOpcache

§

impl UnwindSafe for _PyWeakReference

§

impl UnwindSafe for _frozen

§

impl UnwindSafe for _inittab

§

impl UnwindSafe for setentry

§

impl UnwindSafe for wrapperbase

§

impl UnwindSafe for PanicException

§

impl UnwindSafe for PyBackedBytes

§

impl UnwindSafe for PyBackedStr

§

impl UnwindSafe for PyBorrowError

§

impl UnwindSafe for PyBorrowMutError

§

impl UnwindSafe for PyAny

§

impl UnwindSafe for PyTraverseError

§

impl UnwindSafe for PyBool

§

impl UnwindSafe for PyByteArray

§

impl UnwindSafe for PyBytes

§

impl UnwindSafe for PyCFunction

§

impl UnwindSafe for PyCapsule

§

impl UnwindSafe for PyCode

§

impl UnwindSafe for PyComplex

§

impl UnwindSafe for PyDate

§

impl UnwindSafe for PyDateTime

§

impl UnwindSafe for PyDelta

§

impl UnwindSafe for PyDict

§

impl UnwindSafe for PyDictItems

§

impl UnwindSafe for PyDictKeys

§

impl UnwindSafe for PyDictValues

§

impl UnwindSafe for PyEllipsis

§

impl UnwindSafe for PyFloat

§

impl UnwindSafe for PyFrame

§

impl UnwindSafe for PyFrozenSet

§

impl UnwindSafe for PyFunction

§

impl UnwindSafe for PyInt

§

impl UnwindSafe for PyIterator

§

impl UnwindSafe for PyList

§

impl UnwindSafe for PyMapping

§

impl UnwindSafe for PyMappingProxy

§

impl UnwindSafe for PyMemoryView

§

impl UnwindSafe for PyModule

§

impl UnwindSafe for PyNone

§

impl UnwindSafe for PyNotImplemented

§

impl UnwindSafe for PySequence

§

impl UnwindSafe for PySet

§

impl UnwindSafe for PySlice

§

impl UnwindSafe for PySliceIndices

§

impl UnwindSafe for PyString

§

impl UnwindSafe for PySuper

§

impl UnwindSafe for PyTime

§

impl UnwindSafe for PyTraceback

§

impl UnwindSafe for PyTuple

§

impl UnwindSafe for PyType

§

impl UnwindSafe for PyTzInfo

§

impl UnwindSafe for PyWeakref

§

impl UnwindSafe for PyWeakrefProxy

§

impl UnwindSafe for PyWeakrefReference

§

impl UnwindSafe for OsRng

§

impl UnwindSafe for ApmInfo

§

impl UnwindSafe for CacheInfo

§

impl UnwindSafe for CacheInfoIter

§

impl UnwindSafe for CacheParameter

§

impl UnwindSafe for CpuIdReaderNative

§

impl UnwindSafe for CpuIdResult

§

impl UnwindSafe for DatInfo

§

impl UnwindSafe for DirectCacheAccessInfo

§

impl UnwindSafe for EpcSection

§

impl UnwindSafe for ExtendedFeatures

§

impl UnwindSafe for ExtendedProcessorFeatureIdentifiers

§

impl UnwindSafe for ExtendedState

§

impl UnwindSafe for ExtendedTopologyLevel

§

impl UnwindSafe for FeatureInfo

§

impl UnwindSafe for L1CacheTlbInfo

§

impl UnwindSafe for L2And3CacheTlbInfo

§

impl UnwindSafe for L2CatInfo

§

impl UnwindSafe for L3CatInfo

§

impl UnwindSafe for L3MonitoringInfo

§

impl UnwindSafe for MemBwAllocationInfo

§

impl UnwindSafe for MemoryEncryptionInfo

§

impl UnwindSafe for MonitorMwaitInfo

§

impl UnwindSafe for PerformanceMonitoringInfo

§

impl UnwindSafe for PerformanceOptimizationInfo

§

impl UnwindSafe for ProcessorBrandString

§

impl UnwindSafe for ProcessorCapacityAndFeatureInfo

§

impl UnwindSafe for ProcessorFrequencyInfo

§

impl UnwindSafe for ProcessorSerial

§

impl UnwindSafe for ProcessorTopologyInfo

§

impl UnwindSafe for ProcessorTraceInfo

§

impl UnwindSafe for SoCVendorBrand

§

impl UnwindSafe for SvmFeatures

§

impl UnwindSafe for ThermalPowerInfo

§

impl UnwindSafe for Tlb1gbPageInfo

§

impl UnwindSafe for TscInfo

§

impl UnwindSafe for VendorInfo

§

impl UnwindSafe for FnContext

§

impl UnwindSafe for CaptureLocations

§

impl UnwindSafe for devela::_dep::regex_lite::Error

§

impl UnwindSafe for Regex

§

impl UnwindSafe for RegexBuilder

§

impl UnwindSafe for BoxResolver

§

impl UnwindSafe for Failure

§

impl UnwindSafe for NamedEnumVariantCheckContext

§

impl UnwindSafe for StructCheckContext

§

impl UnwindSafe for TupleStructCheckContext

§

impl UnwindSafe for UnnamedEnumVariantCheckContext

§

impl UnwindSafe for BTreeMapResolver

§

impl UnwindSafe for BTreeSetResolver

§

impl UnwindSafe for HashMapResolver

§

impl UnwindSafe for HashSetResolver

§

impl UnwindSafe for HashTableResolver

§

impl UnwindSafe for IndexMapResolver

§

impl UnwindSafe for IndexSetResolver

§

impl UnwindSafe for IteratorLengthMismatch

§

impl UnwindSafe for ErasedPtr

§

impl UnwindSafe for Pool

§

impl UnwindSafe for Unpool

§

impl UnwindSafe for ArchivedCString

§

impl UnwindSafe for CStringResolver

§

impl UnwindSafe for FxHasher64

§

impl UnwindSafe for Borrow

§

impl UnwindSafe for Move

§

impl UnwindSafe for ArchivedIpv4Addr

§

impl UnwindSafe for ArchivedIpv6Addr

§

impl UnwindSafe for ArchivedSocketAddrV4

§

impl UnwindSafe for ArchivedSocketAddrV6

§

impl UnwindSafe for Bool

§

impl UnwindSafe for NaN

§

impl UnwindSafe for Null

§

impl UnwindSafe for devela::_dep::rkyv::niche::niching::Zero

§

impl UnwindSafe for ArchivedOptionNonZeroI8

§

impl UnwindSafe for ArchivedOptionNonZeroI16

§

impl UnwindSafe for ArchivedOptionNonZeroI32

§

impl UnwindSafe for ArchivedOptionNonZeroI64

§

impl UnwindSafe for ArchivedOptionNonZeroI128

§

impl UnwindSafe for ArchivedOptionNonZeroU8

§

impl UnwindSafe for ArchivedOptionNonZeroU16

§

impl UnwindSafe for ArchivedOptionNonZeroU32

§

impl UnwindSafe for ArchivedOptionNonZeroU64

§

impl UnwindSafe for ArchivedOptionNonZeroU128

§

impl UnwindSafe for ArchivedRangeFull

§

impl UnwindSafe for ArcFlavor

§

impl UnwindSafe for RcFlavor

§

impl UnwindSafe for RcResolver

§

impl UnwindSafe for RcWeakResolver

§

impl UnwindSafe for AtomicI16_be

§

impl UnwindSafe for AtomicI16_le

§

impl UnwindSafe for AtomicI32_be

§

impl UnwindSafe for AtomicI32_le

§

impl UnwindSafe for AtomicI64_be

§

impl UnwindSafe for AtomicI64_le

§

impl UnwindSafe for AtomicU16_be

§

impl UnwindSafe for AtomicU16_le

§

impl UnwindSafe for AtomicU32_be

§

impl UnwindSafe for AtomicU32_le

§

impl UnwindSafe for AtomicU64_be

§

impl UnwindSafe for AtomicU64_le

§

impl UnwindSafe for NonZeroI16_be

§

impl UnwindSafe for NonZeroI16_le

§

impl UnwindSafe for NonZeroI32_be

§

impl UnwindSafe for NonZeroI32_le

§

impl UnwindSafe for NonZeroI64_be

§

impl UnwindSafe for NonZeroI64_le

§

impl UnwindSafe for NonZeroI128_be

§

impl UnwindSafe for NonZeroI128_le

§

impl UnwindSafe for NonZeroU16_be

§

impl UnwindSafe for NonZeroU16_le

§

impl UnwindSafe for NonZeroU32_be

§

impl UnwindSafe for NonZeroU32_le

§

impl UnwindSafe for NonZeroU64_be

§

impl UnwindSafe for NonZeroU64_le

§

impl UnwindSafe for NonZeroU128_be

§

impl UnwindSafe for NonZeroU128_le

§

impl UnwindSafe for char_be

§

impl UnwindSafe for char_le

§

impl UnwindSafe for f32_be

§

impl UnwindSafe for f32_le

§

impl UnwindSafe for f64_be

§

impl UnwindSafe for f64_le

§

impl UnwindSafe for i16_be

§

impl UnwindSafe for i16_le

§

impl UnwindSafe for i32_be

§

impl UnwindSafe for i32_le

§

impl UnwindSafe for i64_be

§

impl UnwindSafe for i64_le

§

impl UnwindSafe for i128_be

§

impl UnwindSafe for i128_le

§

impl UnwindSafe for u16_be

§

impl UnwindSafe for u16_le

§

impl UnwindSafe for u32_be

§

impl UnwindSafe for u32_le

§

impl UnwindSafe for u64_be

§

impl UnwindSafe for u64_le

§

impl UnwindSafe for u128_be

§

impl UnwindSafe for u128_le

§

impl UnwindSafe for NonZeroI16_ube

§

impl UnwindSafe for NonZeroI16_ule

§

impl UnwindSafe for NonZeroI32_ube

§

impl UnwindSafe for NonZeroI32_ule

§

impl UnwindSafe for NonZeroI64_ube

§

impl UnwindSafe for NonZeroI64_ule

§

impl UnwindSafe for NonZeroI128_ube

§

impl UnwindSafe for NonZeroI128_ule

§

impl UnwindSafe for NonZeroU16_ube

§

impl UnwindSafe for NonZeroU16_ule

§

impl UnwindSafe for NonZeroU32_ube

§

impl UnwindSafe for NonZeroU32_ule

§

impl UnwindSafe for NonZeroU64_ube

§

impl UnwindSafe for NonZeroU64_ule

§

impl UnwindSafe for NonZeroU128_ube

§

impl UnwindSafe for NonZeroU128_ule

§

impl UnwindSafe for char_ube

§

impl UnwindSafe for char_ule

§

impl UnwindSafe for f32_ube

§

impl UnwindSafe for f32_ule

§

impl UnwindSafe for f64_ube

§

impl UnwindSafe for f64_ule

§

impl UnwindSafe for i16_ube

§

impl UnwindSafe for i16_ule

§

impl UnwindSafe for i32_ube

§

impl UnwindSafe for i32_ule

§

impl UnwindSafe for i64_ube

§

impl UnwindSafe for i64_ule

§

impl UnwindSafe for i128_ube

§

impl UnwindSafe for i128_ule

§

impl UnwindSafe for u16_ube

§

impl UnwindSafe for u16_ule

§

impl UnwindSafe for u32_ube

§

impl UnwindSafe for u32_ule

§

impl UnwindSafe for u64_ube

§

impl UnwindSafe for u64_ule

§

impl UnwindSafe for u128_ube

§

impl UnwindSafe for u128_ule

§

impl UnwindSafe for AllocationStats

§

impl UnwindSafe for Arena

§

impl UnwindSafe for Share

§

impl UnwindSafe for devela::_dep::rkyv::ser::sharing::Unshare

§

impl UnwindSafe for ArchivedString

§

impl UnwindSafe for StringResolver

§

impl UnwindSafe for ArchivedDuration

§

impl UnwindSafe for SharedValidator

§

impl UnwindSafe for VecResolver

§

impl UnwindSafe for Acquire

§

impl UnwindSafe for AsBox

§

impl UnwindSafe for AsOwned

§

impl UnwindSafe for AsString

§

impl UnwindSafe for AsUnixTime

§

impl UnwindSafe for AsVec

§

impl UnwindSafe for DefaultNiche

§

impl UnwindSafe for devela::_dep::rkyv::with::Identity

§

impl UnwindSafe for Inline

§

impl UnwindSafe for InlineAsBox

§

impl UnwindSafe for Lock

§

impl UnwindSafe for Niche

§

impl UnwindSafe for Relaxed

§

impl UnwindSafe for SeqCst

§

impl UnwindSafe for devela::_dep::rkyv::with::Skip

§

impl UnwindSafe for Unsafe

§

impl UnwindSafe for devela::_dep::rkyv::with::Unshare

§

impl UnwindSafe for devela::_dep::rodio::cpal::platform::AlsaDevice

§

impl UnwindSafe for devela::_dep::rodio::cpal::platform::AlsaDevices

§

impl UnwindSafe for devela::_dep::rodio::cpal::platform::AlsaHost

§

impl UnwindSafe for BackendSpecificError

§

impl UnwindSafe for Data

§

impl UnwindSafe for devela::_dep::rodio::cpal::Host

§

impl UnwindSafe for HostUnavailable

§

impl UnwindSafe for I24

§

impl UnwindSafe for I48

§

impl UnwindSafe for InputCallbackInfo

§

impl UnwindSafe for InputStreamTimestamp

§

impl UnwindSafe for OutputCallbackInfo

§

impl UnwindSafe for OutputStreamTimestamp

§

impl UnwindSafe for SampleRate

§

impl UnwindSafe for StreamConfig

§

impl UnwindSafe for StreamInstant

§

impl UnwindSafe for SupportedInputConfigs

§

impl UnwindSafe for SupportedOutputConfigs

§

impl UnwindSafe for SupportedStreamConfigRange

§

impl UnwindSafe for U24

§

impl UnwindSafe for U48

§

impl UnwindSafe for Chirp

§

impl UnwindSafe for SignalGenerator

§

impl UnwindSafe for SineWave

§

impl UnwindSafe for devela::_dep::rodio::Device

§

impl UnwindSafe for devela::_dep::rodio::Devices

§

impl UnwindSafe for OutputStreamHandle

§

impl UnwindSafe for devela::_dep::rodio::Sink

§

impl UnwindSafe for SpatialSink

§

impl UnwindSafe for SupportedStreamConfig

§

impl UnwindSafe for devela::_dep::rustix::event::epoll::CreateFlags

§

impl UnwindSafe for EventVec

§

impl UnwindSafe for EventfdFlags

§

impl UnwindSafe for FdSetElement

§

impl UnwindSafe for PollFlags

§

impl UnwindSafe for OwnedFd

§

impl UnwindSafe for devela::_dep::rustix::fs::inotify::CreateFlags

§

impl UnwindSafe for ReadFlags

§

impl UnwindSafe for WatchFlags

§

impl UnwindSafe for Access

§

impl UnwindSafe for AtFlags

§

impl UnwindSafe for Dir

§

impl UnwindSafe for devela::_dep::rustix::fs::DirEntry

§

impl UnwindSafe for FallocateFlags

§

impl UnwindSafe for FdFlags

§

impl UnwindSafe for devela::_dep::rustix::fs::Gid

§

impl UnwindSafe for IFlags

§

impl UnwindSafe for MemfdFlags

§

impl UnwindSafe for Mode

§

impl UnwindSafe for MountFlags

§

impl UnwindSafe for MountPropagationFlags

§

impl UnwindSafe for OFlags

§

impl UnwindSafe for RenameFlags

§

impl UnwindSafe for ResolveFlags

§

impl UnwindSafe for SealFlags

§

impl UnwindSafe for StatVfs

§

impl UnwindSafe for StatVfsMountFlags

§

impl UnwindSafe for StatxFlags

§

impl UnwindSafe for Timestamps

§

impl UnwindSafe for devela::_dep::rustix::fs::Uid

§

impl UnwindSafe for UnmountFlags

§

impl UnwindSafe for XattrFlags

§

impl UnwindSafe for DupFlags

§

impl UnwindSafe for Errno

§

impl UnwindSafe for ReadWriteFlags

§

impl UnwindSafe for devela::_dep::rustix::io_uring::EpollEvent

§

impl UnwindSafe for EventFlags

§

impl UnwindSafe for IoringAcceptFlags

§

impl UnwindSafe for IoringAsyncCancelFlags

§

impl UnwindSafe for IoringCqFlags

§

impl UnwindSafe for IoringCqeFlags

§

impl UnwindSafe for IoringEnterFlags

§

impl UnwindSafe for IoringFeatureFlags

§

impl UnwindSafe for IoringFsyncFlags

§

impl UnwindSafe for IoringMsgringFlags

§

impl UnwindSafe for IoringOpFlags

§

impl UnwindSafe for IoringPollFlags

§

impl UnwindSafe for IoringRecvFlags

§

impl UnwindSafe for IoringRegisterFlags

§

impl UnwindSafe for IoringRsrcFlags

§

impl UnwindSafe for IoringSendFlags

§

impl UnwindSafe for IoringSetupFlags

§

impl UnwindSafe for IoringSqFlags

§

impl UnwindSafe for IoringSqeFlags

§

impl UnwindSafe for IoringTimeoutFlags

§

impl UnwindSafe for RecvFlags

§

impl UnwindSafe for RecvmsgOutFlags

§

impl UnwindSafe for SendFlags

§

impl UnwindSafe for SocketFlags

§

impl UnwindSafe for devela::_dep::rustix::io_uring::SpliceFlags

§

impl UnwindSafe for addr3_struct

§

impl UnwindSafe for addr_len_struct

§

impl UnwindSafe for buf_ring_bufs_struct

§

impl UnwindSafe for buf_ring_tail_struct

§

impl UnwindSafe for cmd_op_struct

§

impl UnwindSafe for io_cqring_offsets

§

impl UnwindSafe for io_sqring_offsets

§

impl UnwindSafe for io_uring_buf

§

impl UnwindSafe for io_uring_buf_reg

§

impl UnwindSafe for io_uring_buf_ring

§

impl UnwindSafe for io_uring_cqe

§

impl UnwindSafe for io_uring_files_update

§

impl UnwindSafe for io_uring_getevents_arg

§

impl UnwindSafe for io_uring_params

§

impl UnwindSafe for io_uring_probe

§

impl UnwindSafe for io_uring_probe_op

§

impl UnwindSafe for io_uring_ptr

§

impl UnwindSafe for io_uring_recvmsg_out

§

impl UnwindSafe for io_uring_restriction

§

impl UnwindSafe for io_uring_rsrc_register

§

impl UnwindSafe for io_uring_rsrc_update2

§

impl UnwindSafe for io_uring_rsrc_update

§

impl UnwindSafe for io_uring_sqe

§

impl UnwindSafe for io_uring_sync_cancel_reg

§

impl UnwindSafe for iovec

§

impl UnwindSafe for msghdr

§

impl UnwindSafe for open_how

§

impl UnwindSafe for sockaddr

§

impl UnwindSafe for __kernel_sockaddr_storage

§

impl UnwindSafe for tail_or_bufs_struct

§

impl UnwindSafe for Opcode

§

impl UnwindSafe for MapFlags

§

impl UnwindSafe for MlockAllFlags

§

impl UnwindSafe for MlockFlags

§

impl UnwindSafe for MprotectFlags

§

impl UnwindSafe for MremapFlags

§

impl UnwindSafe for MsyncFlags

§

impl UnwindSafe for ProtFlags

§

impl UnwindSafe for UserfaultfdFlags

§

impl UnwindSafe for FsMountFlags

§

impl UnwindSafe for FsOpenFlags

§

impl UnwindSafe for FsPickFlags

§

impl UnwindSafe for MountAttrFlags

§

impl UnwindSafe for MoveMountFlags

§

impl UnwindSafe for OpenTreeFlags

§

impl UnwindSafe for AddressFamily

§

impl UnwindSafe for Protocol

§

impl UnwindSafe for RecvMsgReturn

§

impl UnwindSafe for SocketAddrUnix

§

impl UnwindSafe for SocketType

§

impl UnwindSafe for devela::_dep::rustix::net::UCred

§

impl UnwindSafe for SockaddrXdpFlags

§

impl UnwindSafe for SocketAddrXdp

§

impl UnwindSafe for XdpDesc

§

impl UnwindSafe for XdpDescOptions

§

impl UnwindSafe for XdpMmapOffsets

§

impl UnwindSafe for XdpOptions

§

impl UnwindSafe for XdpOptionsFlags

§

impl UnwindSafe for XdpRingFlags

§

impl UnwindSafe for XdpRingOffset

§

impl UnwindSafe for XdpStatistics

§

impl UnwindSafe for XdpUmemReg

§

impl UnwindSafe for XdpUmemRegFlags

§

impl UnwindSafe for DecInt

§

impl UnwindSafe for PipeFlags

§

impl UnwindSafe for devela::_dep::rustix::pipe::SpliceFlags

§

impl UnwindSafe for CpuSet

§

impl UnwindSafe for Cpuid

§

impl UnwindSafe for FloatingPointEmulationControl

§

impl UnwindSafe for FloatingPointExceptionMode

§

impl UnwindSafe for MembarrierQuery

§

impl UnwindSafe for devela::_dep::rustix::process::Pid

§

impl UnwindSafe for PidfdFlags

§

impl UnwindSafe for PidfdGetfdFlags

§

impl UnwindSafe for PrctlMmMap

§

impl UnwindSafe for Rlimit

§

impl UnwindSafe for SpeculationFeatureControl

§

impl UnwindSafe for SpeculationFeatureState

§

impl UnwindSafe for UnalignedAccessControl

§

impl UnwindSafe for WaitOptions

§

impl UnwindSafe for WaitStatus

§

impl UnwindSafe for WaitidOptions

§

impl UnwindSafe for WaitidStatus

§

impl UnwindSafe for OpenptFlags

§

impl UnwindSafe for GetRandomFlags

§

impl UnwindSafe for ShmOFlags

§

impl UnwindSafe for Uname

§

impl UnwindSafe for ControlModes

§

impl UnwindSafe for InputModes

§

impl UnwindSafe for LocalModes

§

impl UnwindSafe for OutputModes

§

impl UnwindSafe for SpecialCodeIndex

§

impl UnwindSafe for SpecialCodes

§

impl UnwindSafe for Termios

§

impl UnwindSafe for CapabilitiesSecureBits

§

impl UnwindSafe for CapabilityFlags

§

impl UnwindSafe for CapabilitySets

§

impl UnwindSafe for Flags

§

impl UnwindSafe for SVEVectorLengthConfig

§

impl UnwindSafe for TaggedAddressMode

§

impl UnwindSafe for ThreadNameSpaceType

§

impl UnwindSafe for UnshareFlags

§

impl UnwindSafe for TimerfdFlags

§

impl UnwindSafe for TimerfdTimerFlags

§

impl UnwindSafe for IgnoredAny

§

impl UnwindSafe for devela::_dep::serde::de::value::Error

§

impl UnwindSafe for Channels

§

impl UnwindSafe for ChannelsIter

§

impl UnwindSafe for SignalSpec

§

impl UnwindSafe for Crc8Ccitt

§

impl UnwindSafe for Crc16Ansi

§

impl UnwindSafe for Crc16AnsiLe

§

impl UnwindSafe for Crc32

§

impl UnwindSafe for Md5

§

impl UnwindSafe for CodecDescriptor

§

impl UnwindSafe for CodecParameters

§

impl UnwindSafe for CodecRegistry

§

impl UnwindSafe for CodecType

§

impl UnwindSafe for DecoderOptions

§

impl UnwindSafe for FinalizeResult

§

impl UnwindSafe for RandomNoise

§

impl UnwindSafe for Complex

§

impl UnwindSafe for Fft

§

impl UnwindSafe for Imdct

§

impl UnwindSafe for Cue

§

impl UnwindSafe for CuePoint

§

impl UnwindSafe for FormatOptions

§

impl UnwindSafe for Packet

§

impl UnwindSafe for SeekedTo

§

impl UnwindSafe for Track

§

impl UnwindSafe for SeekIndex

§

impl UnwindSafe for SeekPoint

§

impl UnwindSafe for MediaSourceStreamOptions

§

impl UnwindSafe for CodebookBuilder

§

impl UnwindSafe for Entry8x8

§

impl UnwindSafe for Entry8x16

§

impl UnwindSafe for Entry8x32

§

impl UnwindSafe for Entry16x8

§

impl UnwindSafe for Entry16x16

§

impl UnwindSafe for Entry16x32

§

impl UnwindSafe for Entry32x8

§

impl UnwindSafe for Entry32x16

§

impl UnwindSafe for Entry32x32

§

impl UnwindSafe for devela::_dep::symphonia::core::meta::MetadataBuilder

§

impl UnwindSafe for MetadataLog

§

impl UnwindSafe for MetadataOptions

§

impl UnwindSafe for MetadataRevision

§

impl UnwindSafe for Size

§

impl UnwindSafe for devela::_dep::symphonia::core::meta::Tag

§

impl UnwindSafe for VendorData

§

impl UnwindSafe for Visual

§

impl UnwindSafe for Descriptor

§

impl UnwindSafe for Hint

§

impl UnwindSafe for Probe

§

impl UnwindSafe for ProbedMetadata

§

impl UnwindSafe for i24

§

impl UnwindSafe for u24

§

impl UnwindSafe for devela::_dep::symphonia::core::units::Time

§

impl UnwindSafe for TimeBase

§

impl UnwindSafe for CGroupLimits

§

impl UnwindSafe for devela::_dep::sysinfo::Component

§

impl UnwindSafe for devela::_dep::sysinfo::Components

§

impl UnwindSafe for Cpu

§

impl UnwindSafe for CpuRefreshKind

§

impl UnwindSafe for Disk

§

impl UnwindSafe for DiskRefreshKind

§

impl UnwindSafe for DiskUsage

§

impl UnwindSafe for Disks

§

impl UnwindSafe for devela::_dep::sysinfo::Gid

§

impl UnwindSafe for Group

§

impl UnwindSafe for Groups

§

impl UnwindSafe for IpNetwork

§

impl UnwindSafe for LoadAvg

§

impl UnwindSafe for MacAddr

§

impl UnwindSafe for MemoryRefreshKind

§

impl UnwindSafe for NetworkData

§

impl UnwindSafe for Networks

§

impl UnwindSafe for devela::_dep::sysinfo::Pid

§

impl UnwindSafe for Process

§

impl UnwindSafe for ProcessRefreshKind

§

impl UnwindSafe for RefreshKind

§

impl UnwindSafe for devela::_dep::sysinfo::System

§

impl UnwindSafe for devela::_dep::sysinfo::Uid

§

impl UnwindSafe for User

§

impl UnwindSafe for Users

§

impl UnwindSafe for OutputDeviceParameters

§

impl UnwindSafe for DuplexStream

§

impl UnwindSafe for devela::_dep::tokio::io::Empty

§

impl UnwindSafe for devela::_dep::tokio::io::Repeat

§

impl UnwindSafe for SimplexStream

§

impl UnwindSafe for devela::_dep::tokio::io::Sink

§

impl UnwindSafe for SetGlobalDefaultError

§

impl UnwindSafe for devela::_dep::tracing::field::Empty

§

impl UnwindSafe for devela::_dep::tracing::level_filters::LevelFilter

§

impl UnwindSafe for ParseLevelFilterError

§

impl UnwindSafe for Kind

§

impl UnwindSafe for devela::_dep::tracing::metadata::ParseLevelError

§

impl UnwindSafe for Id

§

impl UnwindSafe for devela::_dep::tracing::Level

§

impl UnwindSafe for Interest

§

impl UnwindSafe for NoSubscriber

§

impl UnwindSafe for GraphemeCursor

§

impl UnwindSafe for WasmSlice

§

impl UnwindSafe for JsError

§

impl UnwindSafe for JsValue

§

impl UnwindSafe for f32x4

§

impl UnwindSafe for f32x8

§

impl UnwindSafe for f64x2

§

impl UnwindSafe for f64x4

§

impl UnwindSafe for i8x16

§

impl UnwindSafe for i8x32

§

impl UnwindSafe for i16x8

§

impl UnwindSafe for i16x16

§

impl UnwindSafe for i32x4

§

impl UnwindSafe for i32x8

§

impl UnwindSafe for i64x2

§

impl UnwindSafe for i64x4

§

impl UnwindSafe for u8x16

§

impl UnwindSafe for u16x8

§

impl UnwindSafe for u16x16

§

impl UnwindSafe for u32x4

§

impl UnwindSafe for u32x8

§

impl UnwindSafe for u64x2

§

impl UnwindSafe for u64x4

§

impl UnwindSafe for devela::_dep::winnow::stream::Range

§

impl UnwindSafe for BStr

§

impl UnwindSafe for devela::_dep::winnow::Bytes

§

impl UnwindSafe for BoxBytes

§

impl UnwindSafe for bpf_attr_getid_id_t

§

impl UnwindSafe for bpf_attr_t

§

impl UnwindSafe for bpf_fib_lookup_addr_t

§

impl UnwindSafe for bpf_fib_lookup_inputs_t

§

impl UnwindSafe for bpf_flow_keys_addr_t

§

impl UnwindSafe for bpf_md_end_ptr_t

§

impl UnwindSafe for bpf_md_ptr_t

§

impl UnwindSafe for bpf_sock_ops_reply_t

§

impl UnwindSafe for bpf_sock_tuple_t

§

impl UnwindSafe for epoll_data_t

§

impl UnwindSafe for in6_un_t

§

impl UnwindSafe for io_uring_sqe_buf_addr_t

§

impl UnwindSafe for io_uring_sqe_buf_group_t

§

impl UnwindSafe for io_uring_sqe_file_off_t

§

impl UnwindSafe for io_uring_sqe_opt_buf_t

§

impl UnwindSafe for io_uring_sqe_other_flags_t

§

impl UnwindSafe for perf_event_attr_config1_t

§

impl UnwindSafe for perf_event_attr_config2_t

§

impl UnwindSafe for perf_event_attr_sample_t

§

impl UnwindSafe for perf_event_attr_wakeup_t

§

impl UnwindSafe for perf_event_mmap_page_cap_t

§

impl UnwindSafe for perf_mem_data_src_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_t

§

impl UnwindSafe for rseq_cs_union_t

§

impl UnwindSafe for semun_t

§

impl UnwindSafe for sifields_t

§

impl UnwindSafe for sigev_un_t

§

impl UnwindSafe for siginfo_t

§

impl UnwindSafe for sigval_t

§

impl UnwindSafe for PyMethodDefPointer

§

impl UnwindSafe for PyUnicodeObjectData

§

impl UnwindSafe for devela::_dep::rkyv::de::Metadata

§

impl UnwindSafe for ArchivedStringRepr

§

impl UnwindSafe for EventData

§

impl UnwindSafe for addr3_or_cmd_union

§

impl UnwindSafe for addr_or_splice_off_in_union

§

impl UnwindSafe for buf_union

§

impl UnwindSafe for io_uring_user_data

§

impl UnwindSafe for ioprio_union

§

impl UnwindSafe for len_union

§

impl UnwindSafe for off_or_addr2_union

§

impl UnwindSafe for op_flags_union

§

impl UnwindSafe for register_or_sqe_op_or_sqe_flags_union

§

impl UnwindSafe for splice_fd_in_or_file_index_union

§

impl UnwindSafe for AdjacentlyTaggedEnumVariant

§

impl UnwindSafe for AsciiCase

§

impl UnwindSafe for AsyncIterBaseTag

§

impl UnwindSafe for AsyncIterOptionTag

§

impl UnwindSafe for AsyncIterResultOptionTag

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for Deprecation

§

impl UnwindSafe for DictVarkeywords

§

impl UnwindSafe for False

§

impl UnwindSafe for FmtSpec

§

impl UnwindSafe for Fork

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for FunctionDescription

§

impl UnwindSafe for HashCallbackOutput

§

impl UnwindSafe for How

§

impl UnwindSafe for I32NotAllOnes

§

impl UnwindSafe for I64NotAllOnes

§

impl UnwindSafe for IPowModulo

§

impl UnwindSafe for ImportedExceptionTypeObject

§

impl UnwindSafe for IterBaseTag

§

impl UnwindSafe for IterOptionTag

§

impl UnwindSafe for IterResultOptionTag

§

impl UnwindSafe for KeywordOnlyParameterDescription

§

impl UnwindSafe for MaybeRuntimePyMethodDef

§

impl UnwindSafe for ModuleDef

§

impl UnwindSafe for ModuleInitializer

§

impl UnwindSafe for MustAbort

§

impl UnwindSafe for Nanoseconds

§

impl UnwindSafe for NoVarargs

§

impl UnwindSafe for NoVarkeywords

§

impl UnwindSafe for NonZeroI8Inner

§

impl UnwindSafe for NonZeroI16Inner

§

impl UnwindSafe for NonZeroI32Inner

§

impl UnwindSafe for NonZeroI64Inner

§

impl UnwindSafe for NonZeroI128Inner

§

impl UnwindSafe for NonZeroIsizeInner

§

impl UnwindSafe for NonZeroU8Inner

§

impl UnwindSafe for NonZeroU16Inner

§

impl UnwindSafe for NonZeroU32Inner

§

impl UnwindSafe for NonZeroU64Inner

§

impl UnwindSafe for NonZeroU128Inner

§

impl UnwindSafe for NonZeroUsizeInner

§

impl UnwindSafe for Number

§

impl UnwindSafe for PanicTrap

§

impl UnwindSafe for PyClassAttributeDef

§

impl UnwindSafe for PyClassDictSlot

§

impl UnwindSafe for PyClassDummySlot

§

impl UnwindSafe for PyClassItems

§

impl UnwindSafe for PyClassItemsIter

§

impl UnwindSafe for PyClassWeakRefSlot

§

impl UnwindSafe for PyGetterDef

§

impl UnwindSafe for PyMethodDef

§

impl UnwindSafe for PyMethodDefType

§

impl UnwindSafe for PyMethodType

§

impl UnwindSafe for PySetterDef

§

impl UnwindSafe for Sign

§

impl UnwindSafe for StartupTlsInfo

§

impl UnwindSafe for TagContentOtherField

§

impl UnwindSafe for TagContentOtherFieldVisitor

§

impl UnwindSafe for TagOrContentField

§

impl UnwindSafe for TagOrContentFieldVisitor

§

impl UnwindSafe for True

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

impl UnwindSafe for TupleVarargs

§

impl UnwindSafe for U32NotAllOnes

§

impl UnwindSafe for U64NotAllOnes

§

impl UnwindSafe for UsizeNoHighBit

§

impl UnwindSafe for Utf8Encoder

§

impl UnwindSafe for Utf16Encoder

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_dep::rayon::string::Drain<'a>

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_dep::symphonia::core::meta::Metadata<'a>

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_dep::tracing::span::Attributes<'a>

§

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

§

impl<'a> !UnwindSafe for devela::_dep::tracing::span::Record<'a>

§

impl<'a> !UnwindSafe for devela::_dep::tracing::Event<'a>

§

impl<'a> !UnwindSafe for devela::_dep::tracing::Metadata<'a>

§

impl<'a> UnwindSafe for Utf8Pattern<'a>

§

impl<'a> UnwindSafe for devela::all::PathComponent<'a>

§

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

§

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

§

impl<'a> UnwindSafe for BufferSource<'a>

§

impl<'a> UnwindSafe for ShaderSource<'a>

§

impl<'a> UnwindSafe for TextureSource<'a>

§

impl<'a> UnwindSafe for PyStringData<'a>

§

impl<'a> UnwindSafe for WaitId<'a>

§

impl<'a> UnwindSafe for DynamicClockId<'a>

§

impl<'a> UnwindSafe for Unexpected<'a>

§

impl<'a> UnwindSafe for MatcherType<'a>

§

impl<'a> UnwindSafe for AudioBufferRef<'a>

§

impl<'a> UnwindSafe for ProcessesToUpdate<'a>

§

impl<'a> UnwindSafe for devela::_core::ffi::c_str::Bytes<'a>

§

impl<'a> UnwindSafe for PanicMessage<'a>

§

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

§

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

§

impl<'a> UnwindSafe for devela::_core::str::Bytes<'a>

§

impl<'a> UnwindSafe for devela::_core::str::CharIndices<'a>

§

impl<'a> UnwindSafe for devela::_core::str::EncodeUtf16<'a>

§

impl<'a> UnwindSafe for devela::_core::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for devela::_core::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for devela::_core::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for devela::_core::str::Lines<'a>

§

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

§

impl<'a> UnwindSafe for devela::_core::str::SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for devela::_core::str::SplitWhitespace<'a>

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for devela::all::IterPath<'a>

§

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

§

impl<'a> UnwindSafe for devela::all::IterPathComponents<'a>

§

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

§

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

§

impl<'a> UnwindSafe for devela::all::PathDisplay<'a>

§

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

§

impl<'a> UnwindSafe for devela::text::IterChars<'a>

§

impl<'a> UnwindSafe for devela::work::TaskContext<'a>

§

impl<'a> UnwindSafe for devela::_dep::_alloc::string::Drain<'a>

§

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

§

impl<'a> UnwindSafe for devela::_dep::_std::ffi::os_str::Display<'a>

§

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

§

impl<'a> UnwindSafe for devela::_dep::_std::net::Incoming<'a>

§

impl<'a> UnwindSafe for devela::_dep::_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 CommandArgs<'a>

§

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

§

impl<'a> UnwindSafe for SpanArithmetic<'a>

§

impl<'a> UnwindSafe for SpanCompare<'a>

§

impl<'a> UnwindSafe for SpanRelativeTo<'a>

§

impl<'a> UnwindSafe for SpanRound<'a>

§

impl<'a> UnwindSafe for SpanTotal<'a>

§

impl<'a> UnwindSafe for ZonedDifference<'a>

§

impl<'a> UnwindSafe for ArrayIter<'a>

§

impl<'a> UnwindSafe for devela::_dep::js_sys::Iter<'a>

§

impl<'a> UnwindSafe for devela::_dep::log::Metadata<'a>

§

impl<'a> UnwindSafe for devela::_dep::log::MetadataBuilder<'a>

§

impl<'a> UnwindSafe for devela::_dep::log::Record<'a>

§

impl<'a> UnwindSafe for RecordBuilder<'a>

§

impl<'a> UnwindSafe for Arg<'a>

§

impl<'a> UnwindSafe for UniformsSource<'a>

§

impl<'a> UnwindSafe for PyVisit<'a>

§

impl<'a> UnwindSafe for PythonVersionInfo<'a>

§

impl<'a> UnwindSafe for ArchiveValidator<'a>

§

impl<'a> UnwindSafe for devela::_dep::rustix::event::epoll::Iter<'a>

§

impl<'a> UnwindSafe for FdSetIter<'a>

§

impl<'a> UnwindSafe for InotifyEvent<'a>

§

impl<'a> UnwindSafe for RawDirEntry<'a>

§

impl<'a> UnwindSafe for IoSliceRaw<'a>

§

impl<'a> UnwindSafe for RangeMatches<'a>

§

impl<'a> UnwindSafe for RangeRMatches<'a>

§

impl<'a> UnwindSafe for RangeRSplits<'a>

§

impl<'a> UnwindSafe for RangeSplits<'a>

§

impl<'a> UnwindSafe for BitReaderLtr<'a>

§

impl<'a> UnwindSafe for BitReaderRtl<'a>

§

impl<'a> UnwindSafe for devela::_dep::symphonia::core::io::BufReader<'a>

§

impl<'a> UnwindSafe for GraphemeIndices<'a>

§

impl<'a> UnwindSafe for Graphemes<'a>

§

impl<'a> UnwindSafe for USentenceBoundIndices<'a>

§

impl<'a> UnwindSafe for USentenceBounds<'a>

§

impl<'a> UnwindSafe for UWordBoundIndices<'a>

§

impl<'a> UnwindSafe for UWordBounds<'a>

§

impl<'a> UnwindSafe for UnicodeSentences<'a>

§

impl<'a> UnwindSafe for UnicodeWordIndices<'a>

§

impl<'a> UnwindSafe for UnicodeWords<'a>

§

impl<'a> UnwindSafe for Concat<'a>

§

impl<'a> UnwindSafe for ConcatBytes<'a>

§

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

§

impl<'a> UnwindSafe for InternallyTaggedUnitVisitor<'a>

§

impl<'a> UnwindSafe for Join<'a>

§

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

§

impl<'a> UnwindSafe for UntaggedUnitVisitor<'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, K, Q, V, S, A = Global> !UnwindSafe for EntryRef<'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, 'b, T> UnwindSafe for ExampleEnum<'a, 'b, T>
where T: UnwindSafe,

§

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

§

impl<'a, 'bump> !UnwindSafe for devela::_dep::bumpalo::collections::string::Drain<'a, 'bump>

§

impl<'a, 'bump, I> !UnwindSafe for devela::_dep::bumpalo::collections::vec::Splice<'a, 'bump, I>

§

impl<'a, 'bump, T> !UnwindSafe for devela::_dep::bumpalo::collections::vec::Drain<'a, 'bump, T>

§

impl<'a, 'bump, T, F> !UnwindSafe for DrainFilter<'a, 'bump, T, F>

§

impl<'a, 'de, E> !UnwindSafe for FlatMapDeserializer<'a, 'de, E>

§

impl<'a, 'de, E> UnwindSafe for ContentRefDeserializer<'a, 'de, E>
where E: UnwindSafe,

§

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

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::all::memchr::OneIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::all::memchr::ThreeIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::all::memchr::TwoIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>

§

impl<'a, 'h> UnwindSafe for devela::_dep::memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>

§

impl<'a, 'py> !UnwindSafe for DowncastError<'a, 'py>

§

impl<'a, 'py> !UnwindSafe for BorrowedTupleIterator<'a, 'py>

§

impl<'a, 'py, T> UnwindSafe for devela::_dep::pyo3::Borrowed<'a, 'py, T>
where T: RefUnwindSafe,

§

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

§

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

§

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

§

impl<'a, B> !UnwindSafe for BitStreamLtr<'a, B>

§

impl<'a, B> !UnwindSafe for BitStreamRtl<'a, B>

§

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

§

impl<'a, DST, BUF> !UnwindSafe for DstQueueIterMut<'a, DST, BUF>

§

impl<'a, DST, BUF> !UnwindSafe for DstQueuePopHandle<'a, DST, BUF>

§

impl<'a, DST, BUF> !UnwindSafe for DstStackIterMut<'a, DST, BUF>

§

impl<'a, DST, BUF> UnwindSafe for DstQueueIter<'a, DST, BUF>
where BUF: RefUnwindSafe, DST: RefUnwindSafe + ?Sized,

§

impl<'a, DST, BUF> UnwindSafe for DstStackIter<'a, DST, BUF>
where BUF: RefUnwindSafe, DST: RefUnwindSafe + ?Sized,

§

impl<'a, E> UnwindSafe for BytesDeserializer<'a, E>
where E: UnwindSafe,

§

impl<'a, E> UnwindSafe for CowStrDeserializer<'a, E>
where E: UnwindSafe,

§

impl<'a, E> UnwindSafe for devela::_dep::serde::de::value::StrDeserializer<'a, E>
where E: UnwindSafe,

§

impl<'a, E> UnwindSafe for StrDeserializer<'a, E>
where E: 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 devela::_dep::_alloc::vec::Splice<'a, I, A>

§

impl<'a, K> UnwindSafe for devela::_dep::_alloc::collections::btree_set::Cursor<'a, K>
where K: RefUnwindSafe,

§

impl<'a, K> UnwindSafe for devela::_dep::_std::collections::hash_set::Drain<'a, K>
where K: RefUnwindSafe,

§

impl<'a, K> UnwindSafe for devela::_dep::_std::collections::hash_set::Iter<'a, K>
where K: RefUnwindSafe,

§

impl<'a, K> UnwindSafe for devela::_dep::hashbrown::hash_set::Iter<'a, K>
where K: RefUnwindSafe,

§

impl<'a, K, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_set::CursorMut<'a, K, A>

§

impl<'a, K, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_set::CursorMutKey<'a, K, A>

§

impl<'a, K, A> UnwindSafe for devela::_dep::hashbrown::hash_set::Drain<'a, K, A>

§

impl<'a, K, F> !UnwindSafe for devela::_dep::_std::collections::hash_set::ExtractIf<'a, K, F>

§

impl<'a, K, F, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_set::ExtractIf<'a, K, F, A>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_std::collections::hash_map::Entry<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_alloc::collections::btree_map::IterMut<'a, K, V>

§

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

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_alloc::collections::btree_map::ValuesMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_std::collections::hash_map::IterMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_std::collections::hash_map::OccupiedEntry<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_std::collections::hash_map::OccupiedError<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_std::collections::hash_map::VacantEntry<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::_std::collections::hash_map::ValuesMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::hashbrown::hash_map::IterMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::hashbrown::hash_map::ValuesMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::rayon::collections::btree_map::IterMut<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::rayon::collections::hash_map::Drain<'a, K, V>

§

impl<'a, K, V> !UnwindSafe for devela::_dep::rayon::collections::hash_map::IterMut<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_alloc::collections::btree_map::Cursor<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_alloc::collections::btree_map::Iter<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_alloc::collections::btree_map::Keys<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_alloc::collections::btree_map::Range<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_alloc::collections::btree_map::Values<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_std::collections::hash_map::Drain<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_std::collections::hash_map::Iter<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_std::collections::hash_map::Keys<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::_std::collections::hash_map::Values<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::hashbrown::hash_map::Iter<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::hashbrown::hash_map::Keys<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::hashbrown::hash_map::Values<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::rayon::collections::btree_map::Iter<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::rayon::collections::hash_map::Iter<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::index_map::Iter<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::index_map::Keys<'a, K, V>

§

impl<'a, K, V> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::index_map::Values<'a, K, V>

§

impl<'a, K, V, A = Global> !UnwindSafe for devela::all::BTreeMapEntry<'a, K, V, A>

§

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

§

impl<'a, K, V, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_map::CursorMutKey<'a, K, V, A>

§

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

§

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

§

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

§

impl<'a, K, V, A> UnwindSafe for devela::_dep::hashbrown::hash_map::Drain<'a, K, V, A>

§

impl<'a, K, V, F> !UnwindSafe for devela::_dep::_std::collections::hash_map::ExtractIf<'a, K, V, F>

§

impl<'a, K, V, F, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_map::ExtractIf<'a, K, V, F, A>

§

impl<'a, K, V, F, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::ExtractIf<'a, K, V, F, A>

§

impl<'a, K, V, H> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::map::Iter<'a, K, V, H>

§

impl<'a, K, V, H> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::map::IterMut<'a, K, V, H>

§

impl<'a, K, V, H> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::map::Keys<'a, K, V, H>

§

impl<'a, K, V, H> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::map::Values<'a, K, V, H>

§

impl<'a, K, V, H> UnwindSafe for devela::_dep::rkyv::collections::swiss_table::map::ValuesMut<'a, K, V, H>

§

impl<'a, K, V, S = RandomState, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::OccupiedEntry<'a, K, V, S, A>

§

impl<'a, K, V, S = RandomState, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::VacantEntry<'a, K, V, S, A>

§

impl<'a, K, V, S> !UnwindSafe for devela::_dep::_std::collections::hash_map::RawEntryMut<'a, K, V, S>

§

impl<'a, K, V, S> !UnwindSafe for devela::_dep::_std::collections::hash_map::RawEntryBuilderMut<'a, K, V, S>

§

impl<'a, K, V, S> !UnwindSafe for devela::_dep::_std::collections::hash_map::RawOccupiedEntryMut<'a, K, V, S>

§

impl<'a, K, V, S> !UnwindSafe for devela::_dep::_std::collections::hash_map::RawVacantEntryMut<'a, K, V, S>

§

impl<'a, K, V, S> UnwindSafe for devela::_dep::_std::collections::hash_map::RawEntryBuilder<'a, K, V, S>

§

impl<'a, K, V, S, A = Global> !UnwindSafe for devela::all::HashMapEntry<'a, K, V, S, A>

§

impl<'a, K, V, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::RawEntryMut<'a, K, V, S, A>

§

impl<'a, K, V, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::OccupiedError<'a, K, V, S, A>

§

impl<'a, K, V, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::RawEntryBuilderMut<'a, K, V, S, A>

§

impl<'a, K, V, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::RawOccupiedEntryMut<'a, K, V, S, A>

§

impl<'a, K, V, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::RawVacantEntryMut<'a, K, V, S, A>

§

impl<'a, K, V, S, A> UnwindSafe for devela::_dep::hashbrown::hash_map::RawEntryBuilder<'a, K, V, S, A>

§

impl<'a, M> !UnwindSafe for FlatMapSerializeMap<'a, M>

§

impl<'a, M> !UnwindSafe for FlatMapSerializeStruct<'a, M>

§

impl<'a, M> !UnwindSafe for FlatMapSerializeStructVariantAsMapValue<'a, M>

§

impl<'a, M> !UnwindSafe for FlatMapSerializeTupleVariantAsMapValue<'a, M>

§

impl<'a, M> !UnwindSafe for FlatMapSerializer<'a, M>

§

impl<'a, Opcode, Value> !UnwindSafe for Updater<'a, Opcode, Value>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, P> UnwindSafe for Contains<'a, P>
where P: UnwindSafe,

§

impl<'a, P> UnwindSafe for EndsWith<'a, P>
where P: UnwindSafe,

§

impl<'a, P> UnwindSafe for StartsWith<'a, P>
where P: UnwindSafe,

§

impl<'a, P> UnwindSafe for StripPrefix<'a, P>
where P: UnwindSafe,

§

impl<'a, P> UnwindSafe for StripSuffix<'a, P>
where P: UnwindSafe,

§

impl<'a, R> !UnwindSafe for ReplacerRef<'a, R>

§

impl<'a, S> !UnwindSafe for AudioPlanesMut<'a, S>

§

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

§

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

§

impl<'a, T> !UnwindSafe for devela::_core::slice::ChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_core::slice::ChunksMut<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for devela::_core::slice::RChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_core::slice::RChunksMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::_alloc::collections::linked_list::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::_alloc::collections::vec_deque::IterMut<'a, T>

§

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

§

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

§

impl<'a, T> !UnwindSafe for devela::_dep::bumpalo::boxed::Box<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for devela::_dep::hashbrown::hash_table::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::rayon::collections::binary_heap::Drain<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::rayon::collections::hash_set::Drain<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::rayon::collections::linked_list::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::rayon::collections::vec_deque::Drain<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::rayon::collections::vec_deque::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::rayon::option::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::rayon::result::IterMut<'a, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> UnwindSafe for devela::_dep::_alloc::collections::binary_heap::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::_alloc::collections::btree_set::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::_alloc::collections::btree_set::Range<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::_alloc::collections::btree_set::SymmetricDifference<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::_alloc::collections::btree_set::Union<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::_alloc::collections::linked_list::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::_alloc::collections::vec_deque::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::_std::sync::mpmc::Iter<'a, T>

§

impl<'a, T> UnwindSafe for devela::_dep::_std::sync::mpmc::TryIter<'a, T>

§

impl<'a, T> UnwindSafe for devela::_dep::_std::sync::mpsc::Iter<'a, T>

§

impl<'a, T> UnwindSafe for devela::_dep::_std::sync::mpsc::TryIter<'a, T>

§

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

§

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

§

impl<'a, T> UnwindSafe for devela::_dep::hashbrown::hash_table::Iter<'a, T>
where T: RefUnwindSafe,

§

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

§

impl<'a, T> UnwindSafe for devela::_dep::rayon::collections::binary_heap::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::rayon::collections::btree_set::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::rayon::collections::hash_set::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::rayon::collections::linked_list::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::rayon::collections::vec_deque::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::rayon::option::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::rayon::result::Iter<'a, T>
where T: RefUnwindSafe,

§

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

§

impl<'a, T, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_set::Entry<'a, T, A>

§

impl<'a, T, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_table::Entry<'a, T, A>

§

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

§

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

§

impl<'a, T, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_set::OccupiedEntry<'a, T, A>

§

impl<'a, T, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_set::VacantEntry<'a, T, A>

§

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

§

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

§

impl<'a, T, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_table::OccupiedEntry<'a, T, A>

§

impl<'a, T, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_table::VacantEntry<'a, T, A>

§

impl<'a, T, A> UnwindSafe for devela::_dep::_alloc::collections::binary_heap::Drain<'a, T, A>

§

impl<'a, T, A> UnwindSafe for devela::_dep::_alloc::collections::btree_set::Difference<'a, T, A>

§

impl<'a, T, A> UnwindSafe for devela::_dep::_alloc::collections::btree_set::Intersection<'a, T, A>

§

impl<'a, T, A> UnwindSafe for devela::_dep::_alloc::collections::linked_list::Cursor<'a, T, A>

§

impl<'a, T, A> UnwindSafe for devela::_dep::_alloc::collections::vec_deque::Drain<'a, T, A>

§

impl<'a, T, A> UnwindSafe for devela::_dep::_alloc::vec::Drain<'a, T, A>

§

impl<'a, T, A> UnwindSafe for devela::_dep::hashbrown::hash_table::Drain<'a, T, A>

§

impl<'a, T, E> !UnwindSafe for CoroYield<'a, T, E>

§

impl<'a, T, F, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_set::ExtractIf<'a, T, F, A>

§

impl<'a, T, F, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::linked_list::ExtractIf<'a, T, F, A>

§

impl<'a, T, F, A = Global> !UnwindSafe for devela::_dep::_alloc::vec::ExtractIf<'a, T, F, A>

§

impl<'a, T, F, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_table::ExtractIf<'a, T, F, A>

§

impl<'a, T, P> !UnwindSafe for devela::_core::slice::ChunkByMut<'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 devela::_core::slice::SplitInclusiveMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for devela::_core::slice::SplitMut<'a, T, P>

§

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

§

impl<'a, T, P> UnwindSafe for devela::_core::slice::ChunkBy<'a, T, P>

§

impl<'a, T, P> UnwindSafe for devela::_core::slice::RSplit<'a, T, P>

§

impl<'a, T, P> UnwindSafe for devela::_core::slice::RSplitN<'a, T, P>

§

impl<'a, T, P> UnwindSafe for devela::_core::slice::Split<'a, T, P>

§

impl<'a, T, P> UnwindSafe for devela::_core::slice::SplitInclusive<'a, T, P>

§

impl<'a, T, P> UnwindSafe for devela::_core::slice::SplitN<'a, T, P>

§

impl<'a, T, S> !UnwindSafe for devela::_dep::_std::collections::hash_set::Entry<'a, T, S>

§

impl<'a, T, S> !UnwindSafe for devela::_dep::_std::collections::hash_set::OccupiedEntry<'a, T, S>

§

impl<'a, T, S> !UnwindSafe for devela::_dep::_std::collections::hash_set::VacantEntry<'a, T, S>

§

impl<'a, T, S> UnwindSafe for devela::_dep::_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> UnwindSafe for devela::_dep::_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> UnwindSafe for devela::_dep::_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> UnwindSafe for devela::_dep::_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_set::Entry<'a, T, S, A>

§

impl<'a, T, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_set::OccupiedEntry<'a, T, S, A>

§

impl<'a, T, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_set::VacantEntry<'a, T, S, A>

§

impl<'a, T, S, A> UnwindSafe for devela::_dep::hashbrown::hash_set::Difference<'a, T, S, A>

§

impl<'a, T, S, A> UnwindSafe for devela::_dep::hashbrown::hash_set::Intersection<'a, T, S, A>

§

impl<'a, T, S, A> UnwindSafe for devela::_dep::hashbrown::hash_set::SymmetricDifference<'a, T, S, A>

§

impl<'a, T, S, A> UnwindSafe for devela::_dep::hashbrown::hash_set::Union<'a, T, S, A>

§

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

§

impl<'a, T, const N: usize> UnwindSafe for devela::_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, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11> !UnwindSafe for TupleElementMut<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

§

impl<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11> !UnwindSafe for TupleIterMut<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

§

impl<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11> UnwindSafe for TupleElementRef<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

§

impl<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11> UnwindSafe for TupleIterRef<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

§

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

§

impl<'b, T> !UnwindSafe for devela::all::Ref<'b, T>

§

impl<'b, T> !UnwindSafe for devela::all::RefMut<'b, T>

§

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

§

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

§

impl<'buf> !UnwindSafe for AncillaryDrain<'buf>

§

impl<'buf> !UnwindSafe for RecvAncillaryBuffer<'buf>

§

impl<'buf, 'slice, 'fd> !UnwindSafe for SendAncillaryBuffer<'buf, 'slice, 'fd>

§

impl<'buf, Fd> !UnwindSafe for Reader<'buf, Fd>

§

impl<'buf, Fd> !UnwindSafe for RawDir<'buf, Fd>

§

impl<'bump> !UnwindSafe for devela::_dep::bumpalo::collections::string::FromUtf8Error<'bump>

§

impl<'bump> !UnwindSafe for devela::_dep::bumpalo::collections::String<'bump>

§

impl<'bump, T> !UnwindSafe for devela::_dep::bumpalo::collections::Vec<'bump, T>

§

impl<'bump, T> UnwindSafe for devela::_dep::bumpalo::collections::vec::IntoIter<'bump, T>
where T: RefUnwindSafe,

§

impl<'c, 'h> UnwindSafe for SubCaptureMatches<'c, 'h>

§

impl<'ch> UnwindSafe for devela::_dep::rayon::str::Bytes<'ch>

§

impl<'ch> UnwindSafe for devela::_dep::rayon::str::CharIndices<'ch>

§

impl<'ch> UnwindSafe for devela::_dep::rayon::str::Chars<'ch>

§

impl<'ch> UnwindSafe for devela::_dep::rayon::str::EncodeUtf16<'ch>

§

impl<'ch> UnwindSafe for devela::_dep::rayon::str::Lines<'ch>

§

impl<'ch> UnwindSafe for devela::_dep::rayon::str::SplitAsciiWhitespace<'ch>

§

impl<'ch> UnwindSafe for devela::_dep::rayon::str::SplitWhitespace<'ch>

§

impl<'ch, P> UnwindSafe for devela::_dep::rayon::str::MatchIndices<'ch, P>
where P: UnwindSafe,

§

impl<'ch, P> UnwindSafe for devela::_dep::rayon::str::Matches<'ch, P>
where P: UnwindSafe,

§

impl<'ch, P> UnwindSafe for devela::_dep::rayon::str::Split<'ch, P>
where P: UnwindSafe,

§

impl<'ch, P> UnwindSafe for devela::_dep::rayon::str::SplitInclusive<'ch, P>
where P: UnwindSafe,

§

impl<'ch, P> UnwindSafe for devela::_dep::rayon::str::SplitTerminator<'ch, P>
where P: UnwindSafe,

§

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

§

impl<'data, T> !UnwindSafe for devela::_dep::rayon::slice::ChunksExactMut<'data, T>

§

impl<'data, T> !UnwindSafe for devela::_dep::rayon::slice::ChunksMut<'data, T>

§

impl<'data, T> !UnwindSafe for devela::_dep::rayon::slice::IterMut<'data, T>

§

impl<'data, T> !UnwindSafe for devela::_dep::rayon::slice::RChunksExactMut<'data, T>

§

impl<'data, T> !UnwindSafe for devela::_dep::rayon::slice::RChunksMut<'data, T>

§

impl<'data, T> !UnwindSafe for devela::_dep::rayon::vec::Drain<'data, T>

§

impl<'data, T> !UnwindSafe for AncillaryIter<'data, T>

§

impl<'data, T> UnwindSafe for devela::_dep::rayon::slice::Chunks<'data, T>
where T: RefUnwindSafe,

§

impl<'data, T> UnwindSafe for devela::_dep::rayon::slice::ChunksExact<'data, T>
where T: RefUnwindSafe,

§

impl<'data, T> UnwindSafe for devela::_dep::rayon::slice::Iter<'data, T>
where T: RefUnwindSafe,

§

impl<'data, T> UnwindSafe for devela::_dep::rayon::slice::RChunks<'data, T>
where T: RefUnwindSafe,

§

impl<'data, T> UnwindSafe for devela::_dep::rayon::slice::RChunksExact<'data, T>
where T: RefUnwindSafe,

§

impl<'data, T> UnwindSafe for devela::_dep::rayon::slice::Windows<'data, T>
where T: RefUnwindSafe,

§

impl<'data, T, P> !UnwindSafe for devela::_dep::rayon::slice::ChunkByMut<'data, T, P>

§

impl<'data, T, P> !UnwindSafe for devela::_dep::rayon::slice::SplitInclusiveMut<'data, T, P>

§

impl<'data, T, P> !UnwindSafe for devela::_dep::rayon::slice::SplitMut<'data, T, P>

§

impl<'data, T, P> UnwindSafe for devela::_dep::rayon::slice::ChunkBy<'data, T, P>

§

impl<'data, T, P> UnwindSafe for devela::_dep::rayon::slice::Split<'data, T, P>

§

impl<'data, T, P> UnwindSafe for devela::_dep::rayon::slice::SplitInclusive<'data, T, P>

§

impl<'de> UnwindSafe for Content<'de>

§

impl<'de, E> UnwindSafe for BorrowedBytesDeserializer<'de, E>
where E: UnwindSafe,

§

impl<'de, E> UnwindSafe for devela::_dep::serde::de::value::BorrowedStrDeserializer<'de, E>
where E: UnwindSafe,

§

impl<'de, E> UnwindSafe for BorrowedStrDeserializer<'de, E>
where E: UnwindSafe,

§

impl<'de, E> UnwindSafe for ContentDeserializer<'de, E>
where E: UnwindSafe,

§

impl<'de, E> UnwindSafe for EnumDeserializer<'de, E>
where E: UnwindSafe,

§

impl<'de, I, E> UnwindSafe for MapDeserializer<'de, I, E>
where <<I as Iterator>::Item as Pair>::Second: UnwindSafe, E: UnwindSafe, I: UnwindSafe,

§

impl<'de, T> UnwindSafe for Borrowed<'de, T>
where T: RefUnwindSafe + ?Sized,

§

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

§

impl<'f> UnwindSafe for devela::_dep::jiff::fmt::strtime::Display<'f>

§

impl<'fd> UnwindSafe for PollFd<'fd>

§

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

§

impl<'h> UnwindSafe for Memchr2<'h>

§

impl<'h> UnwindSafe for Memchr3<'h>

§

impl<'h> UnwindSafe for Memchr<'h>

§

impl<'h> UnwindSafe for Captures<'h>

§

impl<'h> UnwindSafe for Match<'h>

§

impl<'h, 'n> UnwindSafe for FindIter<'h, 'n>

§

impl<'h, 'n> UnwindSafe for FindRevIter<'h, 'n>

§

impl<'n> UnwindSafe for TimeZoneAnnotationKind<'n>

§

impl<'n> UnwindSafe for Pieces<'n>

§

impl<'n> UnwindSafe for TimeZoneAnnotation<'n>

§

impl<'n> UnwindSafe for TimeZoneAnnotationName<'n>

§

impl<'n> UnwindSafe for devela::_dep::memchr::memmem::Finder<'n>

§

impl<'n> UnwindSafe for devela::_dep::memchr::memmem::FinderRev<'n>

§

impl<'p> UnwindSafe for BoundFrozenSetIterator<'p>

§

impl<'p> UnwindSafe for BoundSetIterator<'p>

§

impl<'p, P> !UnwindSafe for ByRef<'p, P>

§

impl<'p, T> UnwindSafe for PyRef<'p, T>
where T: UnwindSafe,

§

impl<'p, T> UnwindSafe for PyRefMut<'p, T>
where T: UnwindSafe,

§

impl<'py> UnwindSafe for DowncastIntoError<'py>

§

impl<'py> UnwindSafe for Python<'py>

§

impl<'py> UnwindSafe for BoundDictIterator<'py>

§

impl<'py> UnwindSafe for BoundListIterator<'py>

§

impl<'py> UnwindSafe for BoundTupleIterator<'py>

§

impl<'py> UnwindSafe for PyFrozenSetBuilder<'py>

§

impl<'py, T> UnwindSafe for devela::_dep::pyo3::Bound<'py, T>
where T: UnwindSafe,

§

impl<'r> UnwindSafe for CaptureNames<'r>

§

impl<'r, 'h> UnwindSafe for CaptureMatches<'r, 'h>

§

impl<'r, 'h> UnwindSafe for devela::_dep::regex_lite::Matches<'r, 'h>

§

impl<'r, 'h> UnwindSafe for devela::_dep::regex_lite::Split<'r, 'h>

§

impl<'r, 'h> UnwindSafe for devela::_dep::regex_lite::SplitN<'r, 'h>

§

impl<'s, T, const CAP: usize, IDX, S> UnwindSafe for DestaqueIter<'s, T, CAP, IDX, S>

§

impl<'s, T, const CAP: usize, IDX, S> UnwindSafe for StackIter<'s, T, CAP, IDX, S>

§

impl<'scope> !UnwindSafe for devela::_dep::rayon::Scope<'scope>

§

impl<'scope> !UnwindSafe for ScopeFifo<'scope>

§

impl<'scope, 'env> !UnwindSafe for devela::work::ThreadScope<'scope, 'env>

§

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

§

impl<'slice, 'fd> UnwindSafe for SendAncillaryMessage<'slice, 'fd>

§

impl<'t> UnwindSafe for TimeZoneFollowingTransitions<'t>

§

impl<'t> UnwindSafe for TimeZonePrecedingTransitions<'t>

§

impl<'t> UnwindSafe for TimeZoneTransition<'t>

§

impl<'t> UnwindSafe for NoExpand<'t>

§

impl<'t, T> UnwindSafe for OptionFmt<'t, T>
where T: RefUnwindSafe,

§

impl<'t, T, F> UnwindSafe for OptionFmtOrElse<'t, T, F>

§

impl<'t, T, U> UnwindSafe for OptionFmtOr<'t, T, U>

§

impl<A> !UnwindSafe for VecChunk<A>

§

impl<A> UnwindSafe for devela::_core::iter::RepeatN<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for devela::_core::option::IntoIter<A>
where A: UnwindSafe,

§

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

§

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

§

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

§

impl<A> UnwindSafe for devela::all::IterRepeat<A>
where A: UnwindSafe,

§

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

§

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

§

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

§

impl<A, B> UnwindSafe for devela::all::IterChain<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

impl<A, B> UnwindSafe for devela::all::IterZip<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

impl<A, B> UnwindSafe for devela::_dep::rayon::iter::Chain<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

impl<A, B> UnwindSafe for devela::_dep::rayon::iter::Zip<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

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

§

impl<A, B, C, D, E, F, G, H> UnwindSafe for Pinned<A, B, C, D, E, F, G, H>

§

impl<A, S> UnwindSafe for Validator<A, S>
where A: UnwindSafe, S: UnwindSafe,

§

impl<B = CpalBackend> !UnwindSafe for AudioManager<B>

§

impl<B> !UnwindSafe for AudioManagerSettings<B>

§

impl<B> UnwindSafe for devela::all::IoLines<B>
where B: UnwindSafe,

§

impl<B> UnwindSafe for devela::all::IoSplit<B>
where B: UnwindSafe,

§

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

§

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

§

impl<B, M> UnwindSafe for MonitorStream<B, M>
where B: UnwindSafe, M: UnwindSafe,

§

impl<BK, BV, K, V> UnwindSafe for EntryAdapter<BK, BV, K, V>
where BK: UnwindSafe, BV: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

§

impl<C = StrContext> !UnwindSafe for ContextError<C>

§

impl<ClassT, FieldT, Offset, const IS_PY_T: bool, const IMPLEMENTS_TOPYOBJECT: bool, const IMPLEMENTS_INTOPY: bool, const IMPLEMENTS_INTOPYOBJECT_REF: bool, const IMPLEMENTS_INTOPYOBJECT: bool> UnwindSafe for PyClassGetterGenerator<ClassT, FieldT, Offset, IS_PY_T, IMPLEMENTS_TOPYOBJECT, IMPLEMENTS_INTOPY, IMPLEMENTS_INTOPYOBJECT_REF, IMPLEMENTS_INTOPYOBJECT>
where ClassT: UnwindSafe, FieldT: UnwindSafe, Offset: UnwindSafe,

§

impl<D> UnwindSafe for PrintStyledContent<D>
where D: UnwindSafe,

§

impl<D> UnwindSafe for StyledContent<D>
where D: UnwindSafe,

§

impl<D, S> UnwindSafe for devela::_dep::rayon::iter::Split<D, S>
where D: UnwindSafe, S: UnwindSafe,

§

impl<DST, BUF> UnwindSafe for DstQueue<DST, BUF>
where BUF: UnwindSafe, DST: RefUnwindSafe + ?Sized,

§

impl<DST, BUF> UnwindSafe for DstStack<DST, BUF>
where BUF: UnwindSafe, DST: RefUnwindSafe + ?Sized,

§

impl<DST, BUF> UnwindSafe for DstValue<DST, BUF>
where BUF: UnwindSafe, DST: UnwindSafe + ?Sized,

§

impl<Dyn> !UnwindSafe for devela::_core::ptr::DynMetadata<Dyn>

§

impl<Dyn> UnwindSafe for devela::_dep::rkyv::ptr_meta::DynMetadata<Dyn>
where Dyn: UnwindSafe + ?Sized,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<Error> !UnwindSafe for StreamingSoundData<Error>

§

impl<Error> !UnwindSafe for StreamingSoundHandle<Error>

§

impl<F> UnwindSafe for devela::_core::fmt::FromFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for devela::all::IterFromFn<F>
where F: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<F, G, H, I, O, O2, E> UnwindSafe for devela::_dep::winnow::combinator::FlatMap<F, G, H, I, O, O2, E>

§

impl<F, G, I, O, O2, E> UnwindSafe for AndThen<F, G, I, O, O2, E>

§

impl<F, G, I, O, O2, E> UnwindSafe for devela::_dep::winnow::combinator::Map<F, G, I, O, O2, E>

§

impl<F, G, I, O, O2, E> UnwindSafe for Verify<F, G, I, O, O2, E>

§

impl<F, G, I, O, O2, E> UnwindSafe for VerifyMap<F, G, I, O, O2, E>

§

impl<F, G, I, O, O2, E, E2> UnwindSafe for TryMap<F, G, I, O, O2, E, E2>

§

impl<F, I, O, E> UnwindSafe for ParserIterator<F, I, O, E>

§

impl<F, I, O, E> UnwindSafe for devela::_dep::winnow::combinator::Span<F, I, O, E>

§

impl<F, I, O, E> UnwindSafe for devela::_dep::winnow::combinator::Take<F, I, O, E>

§

impl<F, I, O, E> UnwindSafe for Void<F, I, O, E>

§

impl<F, I, O, E> UnwindSafe for WithSpan<F, I, O, E>

§

impl<F, I, O, E> UnwindSafe for WithTaken<F, I, O, E>

§

impl<F, I, O, E, C> UnwindSafe for devela::_dep::winnow::combinator::Context<F, I, O, E, C>

§

impl<F, I, O, E, E2> UnwindSafe for ErrInto<F, I, O, E, E2>

§

impl<F, I, O, O2, E> UnwindSafe for DefaultValue<F, I, O, O2, E>

§

impl<F, I, O, O2, E> UnwindSafe for OutputInto<F, I, O, O2, E>

§

impl<F, I, O, O2, E> UnwindSafe for devela::_dep::winnow::combinator::Value<F, I, O, O2, E>

§

impl<F, T> UnwindSafe for devela::_dep::symphonia::core::conv::dither::Identity<F, T>
where F: UnwindSafe, T: UnwindSafe,

§

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

§

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

§

impl<F, W> UnwindSafe for With<F, W>
where F: UnwindSafe + ?Sized, W: UnwindSafe,

§

impl<G, C> UnwindSafe for GcdReturn<G, C>
where G: UnwindSafe, C: UnwindSafe,

§

impl<H> UnwindSafe for BuildHasherDefault<H>

§

impl<I1, I2> UnwindSafe for devela::_dep::rodio::source::Mix<I1, I2>
where <I2 as Iterator>::Item: Sized + UnwindSafe, <I1 as Iterator>::Item: Sized + UnwindSafe, I1: UnwindSafe, I2: UnwindSafe,

§

impl<I> !UnwindSafe for TreeErrorBase<I>

§

impl<I> UnwindSafe for devela::_core::async_iter::FromIter<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for devela::_core::iter::Intersperse<I>
where <I as Iterator>::Item: Sized + UnwindSafe, I: UnwindSafe,

§

impl<I> UnwindSafe for devela::all::IterCloned<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::all::IterCopied<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for devela::all::IterEnumerate<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::all::IterFlatten<I>

§

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

§

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

§

impl<I> UnwindSafe for devela::all::IterSkip<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::all::IterStepBy<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::all::IterTake<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Chunks<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Cloned<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Copied<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Enumerate<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Flatten<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Intersperse<I>

§

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

§

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

§

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

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Rev<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Skip<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::StepBy<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for devela::_dep::rayon::iter::Take<I>
where I: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I> UnwindSafe for Buffered<I>
where <I as Iterator>::Item: Sized + RefUnwindSafe,

§

impl<I> UnwindSafe for ChannelVolume<I>
where <I as Iterator>::Item: Sized + UnwindSafe, I: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<I> UnwindSafe for devela::_dep::rodio::source::FromIter<I>
where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

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

§

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

§

impl<I> UnwindSafe for devela::_dep::rodio::source::Repeat<I>
where <I as Iterator>::Item: Sized + RefUnwindSafe,

§

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

§

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

§

impl<I> UnwindSafe for Spatial<I>
where <I as Iterator>::Item: Sized + UnwindSafe, I: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I, C = StrContext> !UnwindSafe for TreeError<I, C>

§

impl<I, C = StrContext> !UnwindSafe for TreeErrorFrame<I, C>

§

impl<I, C> UnwindSafe for TreeErrorContext<I, C>
where I: UnwindSafe, C: UnwindSafe,

§

impl<I, D> UnwindSafe for SamplesConverter<I, D>
where I: UnwindSafe, D: UnwindSafe,

§

impl<I, D> UnwindSafe for UniformSourceIterator<I, D>

§

impl<I, E> UnwindSafe for SeqDeserializer<I, E>
where E: UnwindSafe, I: UnwindSafe,

§

impl<I, E> UnwindSafe for ParseError<I, E>
where I: UnwindSafe, E: UnwindSafe,

§

impl<I, F> UnwindSafe for devela::all::IterFilterMap<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for devela::all::IterInspect<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for devela::all::IterMap<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for devela::_dep::rayon::iter::FlatMap<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

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

§

impl<I, F> UnwindSafe for devela::_dep::rayon::iter::Inspect<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for devela::_dep::rayon::iter::Map<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

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

§

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

§

impl<I, F, const N: usize> UnwindSafe for MapWindows<I, F, N>
where F: UnwindSafe, I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

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

§

impl<I, ID, F> UnwindSafe for Fold<I, ID, F>
where I: UnwindSafe, ID: UnwindSafe, F: UnwindSafe,

§

impl<I, ID, F> UnwindSafe for FoldChunks<I, ID, F>
where I: UnwindSafe, F: UnwindSafe, ID: UnwindSafe,

§

impl<I, INIT, F> UnwindSafe for MapInit<I, INIT, F>
where I: UnwindSafe, INIT: UnwindSafe, F: UnwindSafe,

§

impl<I, J> UnwindSafe for Interleave<I, J>
where I: UnwindSafe, J: UnwindSafe,

§

impl<I, J> UnwindSafe for InterleaveShortest<I, J>
where I: UnwindSafe, J: UnwindSafe,

§

impl<I, P> UnwindSafe for devela::all::IterFilter<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, P> UnwindSafe for devela::_dep::rayon::iter::Filter<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for devela::_dep::rayon::iter::FilterMap<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

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

§

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

§

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

§

impl<I, P, O> UnwindSafe for Replace<I, P, O>
where I: UnwindSafe, P: UnwindSafe, O: UnwindSafe,

§

impl<I, S> UnwindSafe for Stateful<I, S>
where I: UnwindSafe, S: UnwindSafe,

§

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

§

impl<I, T, F> UnwindSafe for MapWith<I, T, F>
where I: UnwindSafe, T: UnwindSafe, F: UnwindSafe,

§

impl<I, U, F> UnwindSafe for devela::all::IterFlatMap<I, U, F>

§

impl<I, U, F> UnwindSafe for FoldChunksWith<I, U, F>
where I: UnwindSafe, U: UnwindSafe, F: UnwindSafe,

§

impl<I, U, F> UnwindSafe for FoldWith<I, U, F>
where I: UnwindSafe, U: UnwindSafe, F: UnwindSafe,

§

impl<I, U, F> UnwindSafe for TryFoldWith<I, U, F>
where I: UnwindSafe, <U as Try>::Output: UnwindSafe, F: UnwindSafe,

§

impl<I, U, ID, F> UnwindSafe for TryFold<I, U, ID, F>

§

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

§

impl<Idx> UnwindSafe for devela::_core::range::Range<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for devela::_core::range::RangeFrom<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for devela::_core::range::RangeInclusive<Idx>
where Idx: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

impl<Iter> UnwindSafe for IterBridge<Iter>
where Iter: UnwindSafe,

§

impl<K> UnwindSafe for devela::_dep::_std::collections::hash_set::IntoIter<K>

§

impl<K, A> UnwindSafe for devela::_dep::hashbrown::hash_set::IntoIter<K, A>

§

impl<K, H> UnwindSafe for ArchivedHashSet<K, H>
where H: UnwindSafe, K: UnwindSafe,

§

impl<K, H> UnwindSafe for ArchivedIndexSet<K, H>
where H: UnwindSafe, K: UnwindSafe,

§

impl<K, V> UnwindSafe for devela::_dep::_std::collections::hash_map::IntoIter<K, V>

§

impl<K, V> UnwindSafe for devela::_dep::_std::collections::hash_map::IntoKeys<K, V>

§

impl<K, V> UnwindSafe for devela::_dep::_std::collections::hash_map::IntoValues<K, V>

§

impl<K, V> UnwindSafe for devela::_dep::rayon::collections::btree_map::IntoIter<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for devela::_dep::rayon::collections::hash_map::IntoIter<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for devela::_dep::rkyv::collections::util::Entry<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for EntryResolver<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for MapKV<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V, A> UnwindSafe for devela::_dep::_alloc::collections::btree_map::IntoIter<K, V, A>

§

impl<K, V, A> UnwindSafe for devela::_dep::_alloc::collections::btree_map::IntoKeys<K, V, A>

§

impl<K, V, A> UnwindSafe for devela::_dep::_alloc::collections::btree_map::IntoValues<K, V, A>

§

impl<K, V, A> UnwindSafe for devela::_dep::hashbrown::hash_map::IntoIter<K, V, A>

§

impl<K, V, A> UnwindSafe for devela::_dep::hashbrown::hash_map::IntoKeys<K, V, A>

§

impl<K, V, A> UnwindSafe for devela::_dep::hashbrown::hash_map::IntoValues<K, V, A>

§

impl<K, V, H> UnwindSafe for ArchivedHashMap<K, V, H>
where H: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

§

impl<K, V, H> UnwindSafe for ArchivedIndexMap<K, V, H>
where H: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

§

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

§

impl<K, V, const E: usize> UnwindSafe for ArchivedBTreeMap<K, V, E>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, const E: usize> UnwindSafe for ArchivedBTreeSet<K, E>
where K: UnwindSafe,

§

impl<L, R> UnwindSafe for Either<L, R>
where L: UnwindSafe, R: UnwindSafe,

§

impl<N> UnwindSafe for NicheInto<N>
where N: UnwindSafe + ?Sized,

§

impl<N, H> UnwindSafe for Mismatch<N, H>
where N: UnwindSafe, H: UnwindSafe,

§

impl<O> UnwindSafe for RawRelPtr<O>
where O: UnwindSafe,

§

impl<Ok, Error> UnwindSafe for Impossible<Ok, Error>
where Ok: UnwindSafe, Error: UnwindSafe,

§

impl<Opcode> UnwindSafe for IntegerSetter<Opcode>
where Opcode: UnwindSafe,

§

impl<Opcode> UnwindSafe for NoArg<Opcode>
where Opcode: UnwindSafe,

§

impl<Opcode, Input> UnwindSafe for Setter<Opcode, Input>
where Input: UnwindSafe, Opcode: UnwindSafe,

§

impl<Opcode, Output> UnwindSafe for Getter<Opcode, Output>
where Opcode: UnwindSafe, Output: UnwindSafe,

§

impl<P> UnwindSafe for devela::_dep::rkyv::option::Iter<P>
where P: UnwindSafe,

§

impl<P, I, O, C, E> UnwindSafe for devela::_dep::winnow::combinator::Repeat<P, I, O, C, E>

§

impl<P, I, O, O2, E> UnwindSafe for ParseTo<P, I, O, O2, E>

§

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

§

impl<R> !UnwindSafe for LoopedDecoder<R>

§

impl<R> !UnwindSafe for Decoder<R>

§

impl<R> UnwindSafe for devela::all::IoBufReader<R>
where R: UnwindSafe + ?Sized,

§

impl<R> UnwindSafe for devela::all::IoBytes<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for BlockRng64<R>

§

impl<R> UnwindSafe for BlockRng<R>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<R> UnwindSafe for devela::_dep::tokio::io::BufReader<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for devela::_dep::tokio::io::Lines<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for devela::_dep::tokio::io::Split<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for devela::_dep::tokio::io::Take<R>
where R: UnwindSafe,

§

impl<R, W> UnwindSafe for devela::_dep::tokio::io::Join<R, W>
where R: UnwindSafe, W: UnwindSafe,

§

impl<RW> UnwindSafe for BufStream<RW>
where RW: UnwindSafe,

§

impl<S = DefaultSpawn> !UnwindSafe for ThreadPoolBuilder<S>

§

impl<S> !UnwindSafe for DynamicMixer<S>

§

impl<S> !UnwindSafe for SourcesQueueOutput<S>

§

impl<S> !UnwindSafe for EmptyCallback<S>

§

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

§

impl<S> UnwindSafe for DynamicMixerController<S>

§

impl<S> UnwindSafe for SourcesQueueInput<S>

§

impl<S> UnwindSafe for devela::_dep::rodio::source::Empty<S>
where S: UnwindSafe,

§

impl<S> UnwindSafe for devela::_dep::rodio::source::Zero<S>
where S: UnwindSafe,

§

impl<S> UnwindSafe for StaticSamplesBuffer<S>
where S: RefUnwindSafe,

§

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

§

impl<S> UnwindSafe for RawSampleBuffer<S>

§

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

§

impl<S, B> UnwindSafe for WalkTree<S, B>
where S: UnwindSafe, B: UnwindSafe,

§

impl<S, B> UnwindSafe for WalkTreePostfix<S, B>
where S: UnwindSafe, B: UnwindSafe,

§

impl<S, B> UnwindSafe for WalkTreePrefix<S, B>
where S: UnwindSafe, B: UnwindSafe,

§

impl<S, V> UnwindSafe for Own<S, V>
where S: UnwindSafe, V: UnwindSafe,

§

impl<SO> UnwindSafe for AtomicLoad<SO>
where SO: UnwindSafe,

§

impl<T0> UnwindSafe for ArchivedTuple1<T0>
where T0: UnwindSafe,

§

impl<T0, T1> UnwindSafe for ArchivedTuple2<T0, T1>
where T0: UnwindSafe, T1: UnwindSafe,

§

impl<T0, T1, T2> UnwindSafe for ArchivedTuple3<T0, T1, T2>
where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe,

§

impl<T0, T1, T2, T3> UnwindSafe for ArchivedTuple4<T0, T1, T2, T3>
where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe,

§

impl<T0, T1, T2, T3, T4> UnwindSafe for ArchivedTuple5<T0, T1, T2, T3, T4>
where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe, T4: UnwindSafe,

§

impl<T0, T1, T2, T3, T4, T5> UnwindSafe for ArchivedTuple6<T0, T1, T2, T3, T4, T5>
where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe, T4: UnwindSafe, T5: UnwindSafe,

§

impl<T0, T1, T2, T3, T4, T5, T6> UnwindSafe for ArchivedTuple7<T0, T1, T2, T3, T4, T5, T6>
where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe, T4: UnwindSafe, T5: UnwindSafe, T6: UnwindSafe,

§

impl<T0, T1, T2, T3, T4, T5, T6, T7> UnwindSafe for ArchivedTuple8<T0, T1, T2, T3, T4, T5, T6, T7>

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> UnwindSafe for ArchivedTuple9<T0, T1, T2, T3, T4, T5, T6, T7, T8>

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> UnwindSafe for ArchivedTuple10<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> UnwindSafe for ArchivedTuple11<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> UnwindSafe for ArchivedTuple12<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> UnwindSafe for ArchivedTuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>

§

impl<T1, T2> UnwindSafe for Compare<T1, T2>
where T1: UnwindSafe, T2: UnwindSafe,

§

impl<T1, T2> UnwindSafe for EqIgnoreAsciiCase<T1, T2>
where T1: UnwindSafe, T2: UnwindSafe,

§

impl<T1, T2> UnwindSafe for Equal<T1, T2>
where T1: UnwindSafe, T2: UnwindSafe,

§

impl<T> !UnwindSafe for JoinHandle<T>

§

impl<T> !UnwindSafe for CommandReader<T>

§

impl<T> !UnwindSafe for CommandWriter<T>

§

impl<T> !UnwindSafe for MidiInputConnection<T>

§

impl<T> !UnwindSafe for Instrumented<T>

§

impl<T> !UnwindSafe for WithDispatch<T>

§

impl<T> !UnwindSafe for RcRef<T>

§

impl<T> !UnwindSafe for RcRefMut<T>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::kira::Value<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for AsyncDropInPlace<T>
where <T as AsyncDestruct>::AsyncDestructor: UnwindSafe, T: ?Sized,

§

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

§

impl<T> UnwindSafe for devela::_core::result::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_core::sync::atomic::AtomicPtr<T>
where T: RefUnwindSafe,

§

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

§

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

§

impl<T> UnwindSafe for ArchivedBareBox<T>
where <T as Archive>::Archived: UnwindSafe,

§

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

§

impl<T> UnwindSafe for BareBoxResolver<T>
where <T as Archive>::Resolver: UnwindSafe,

§

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

§

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

§

impl<T> UnwindSafe for Discriminant<T>

§

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

§

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

§

impl<T> UnwindSafe for devela::all::IoCursor<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::all::IoTake<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::all::IterEmpty<T>

§

impl<T> UnwindSafe for devela::all::IterOnce<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::all::IterRev<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for TypeResource<T>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::num::Compare<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for Pending<T>

§

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

§

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

§

impl<T> UnwindSafe for LocalKey<T>

§

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

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpmc::IntoIter<T>

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpmc::SendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpsc::IntoIter<T>

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpsc::Receiver<T>

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpsc::Sender<T>

§

impl<T> UnwindSafe for SyncSender<T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for PyClassInitializer<T>
where T: UnwindSafe, <<T as PyClassImpl>::BaseType as PyClassBaseType>::Initializer: UnwindSafe,

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::rayon::collections::binary_heap::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::collections::btree_set::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::collections::hash_set::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::collections::linked_list::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::collections::vec_deque::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::iter::Empty<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for devela::_dep::rayon::iter::Once<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::iter::Repeat<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::iter::RepeatN<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::option::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::range::Iter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::range_inclusive::Iter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::result::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::rayon::vec::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for ArchivedBox<T>

§

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

§

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

§

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

§

impl<T> UnwindSafe for ArchivedOptionBox<T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::rkyv::with::Map<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for ReadHalf<T>

§

impl<T> UnwindSafe for WriteHalf<T>

§

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

§

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

§

impl<T> UnwindSafe for WasmRet<T>

§

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

§

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

§

impl<T> UnwindSafe for JsStatic<T>

§

impl<T> UnwindSafe for JsThreadLocal<T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for PyClassObject<T>
where <<T as PyClassImpl>::BaseType as PyClassBaseType>::LayoutAsBase: UnwindSafe, <<T as PyClassImpl>::PyClassMutability as PyClassMutability>::Storage: UnwindSafe, <T as PyClassImpl>::ThreadChecker: UnwindSafe, <T as PyClassImpl>::Dict: UnwindSafe, <T as PyClassImpl>::WeakRef: UnwindSafe, T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T, A = Global> !UnwindSafe for devela::all::RcWeak<T, A>

§

impl<T, A = Global> !UnwindSafe for UniqueRc<T, A>

§

impl<T, A> UnwindSafe for BTreeSet<T, A>

§

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

§

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

§

impl<T, A> UnwindSafe for LinkedList<T, A>

§

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

§

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

§

impl<T, A> UnwindSafe for devela::work::ArcWeak<T, A>
where A: UnwindSafe, T: RefUnwindSafe + ?Sized,

§

impl<T, A> UnwindSafe for devela::_dep::_alloc::collections::binary_heap::IntoIter<T, A>

§

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

§

impl<T, A> UnwindSafe for devela::_dep::_alloc::collections::btree_set::IntoIter<T, A>

§

impl<T, A> UnwindSafe for devela::_dep::_alloc::collections::linked_list::IntoIter<T, A>

§

impl<T, A> UnwindSafe for devela::_dep::_alloc::collections::vec_deque::IntoIter<T, A>
where A: UnwindSafe, T: UnwindSafe,

§

impl<T, A> UnwindSafe for devela::_dep::_alloc::vec::IntoIter<T, A>

§

impl<T, A> UnwindSafe for devela::_dep::hashbrown::hash_table::IntoIter<T, A>

§

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

§

impl<T, D> UnwindSafe for Storage<T, D>
where T: UnwindSafe, D: UnwindSafe,

§

impl<T, E> !UnwindSafe for CoroRun<T, E>

§

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

§

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

§

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

§

impl<T, E> UnwindSafe for Strategy<T, E>
where T: UnwindSafe + ?Sized, E: UnwindSafe,

§

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

§

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

§

impl<T, F> UnwindSafe for ArchivedRc<T, F>

§

impl<T, F> UnwindSafe for ArchivedRcWeak<T, F>

§

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

§

impl<T, N> UnwindSafe for NichedOption<T, N>
where N: UnwindSafe + ?Sized, T: UnwindSafe,

§

impl<T, O> UnwindSafe for RelPtr<T, O>

§

impl<T, P> UnwindSafe for Split<T, P>
where T: UnwindSafe, P: UnwindSafe,

§

impl<T, S> UnwindSafe for devela::_dep::_std::collections::HashSet<T, S>
where S: UnwindSafe, T: UnwindSafe,

§

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

§

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

§

impl<T, U> UnwindSafe for devela::all::IoChain<T, U>
where T: UnwindSafe, U: UnwindSafe,

§

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

§

impl<T, const C: usize, const R: usize, const CR: usize, const RMAJ: bool = true, S = ()> !UnwindSafe for ArchivedArray2d<T, C, R, CR, RMAJ, S>

§

impl<T, const C: usize, const R: usize, const CR: usize, const RMAJ: bool = true, S = ()> !UnwindSafe for Array2dResolver<T, C, R, CR, RMAJ, S>

§

impl<T, const C: usize, const R: usize, const CR: usize, const RMAJ: bool, S> UnwindSafe for Array2d<T, C, R, CR, RMAJ, S>
where <S as Storage>::Stored<[T; CR]>: UnwindSafe,

§

impl<T, const CAP: usize> UnwindSafe for DstArray<T, CAP>
where T: UnwindSafe,

§

impl<T, const CAP: usize, IDX, S = ()> !UnwindSafe for ArchivedDestaque<T, CAP, IDX, S>

§

impl<T, const CAP: usize, IDX, S = ()> !UnwindSafe for ArchivedStack<T, CAP, IDX, S>

§

impl<T, const CAP: usize, IDX, S = ()> !UnwindSafe for DestaqueResolver<T, CAP, IDX, S>

§

impl<T, const CAP: usize, IDX, S = ()> !UnwindSafe for StackResolver<T, CAP, IDX, S>

§

impl<T, const CAP: usize, IDX, S> UnwindSafe for Destaque<T, CAP, IDX, S>

§

impl<T, const CAP: usize, IDX, S> UnwindSafe for Stack<T, CAP, IDX, S>

§

impl<T, const CAP: usize, S> UnwindSafe for ArchivedArray<T, CAP, S>

§

impl<T, const CAP: usize, S> UnwindSafe for devela::all::Array<T, CAP, S>

§

impl<T, const CAP: usize, S> UnwindSafe for ArrayResolver<T, CAP, S>

§

impl<T, const CAP: usize, S> UnwindSafe for ArrayUninit<T, CAP, S>
where <S as Storage>::Stored<[MaybeUninit<T>; CAP]>: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for Extent<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for Point<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for VecPoints<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for Vector<T, D>
where T: UnwindSafe,

§

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

§

impl<T, const N: usize> UnwindSafe for Mask<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 devela::all::ArrayIntoIter<T, N>
where T: UnwindSafe,

§

impl<T, const N: usize> UnwindSafe for devela::_dep::rayon::array::IntoIter<T, N>
where T: UnwindSafe,

§

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

§

impl<V, Q> UnwindSafe for ValueQuant<V, Q>
where V: UnwindSafe, Q: UnwindSafe,

§

impl<W> !UnwindSafe for IntoInnerError<W>

§

impl<W> UnwindSafe for devela::all::IoBufWriter<W>
where W: UnwindSafe + ?Sized,

§

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

§

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

§

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

§

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

§

impl<W> UnwindSafe for devela::_dep::tokio::io::BufWriter<W>
where W: UnwindSafe,

§

impl<W, A, S> UnwindSafe for Serializer<W, A, S>
where W: UnwindSafe, A: UnwindSafe, S: UnwindSafe,

§

impl<W, N> UnwindSafe for MapNiche<W, N>
where W: UnwindSafe + ?Sized, N: UnwindSafe + ?Sized,

§

impl<Y, MO, D, H, M, S, MS, US, NS> UnwindSafe for TimeSplit<Y, MO, D, H, M, S, MS, US, NS>

§

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

§

impl<_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11> UnwindSafe for TupleElement<_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

§

impl<_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11> UnwindSafe for TupleIter<_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

§

impl<const ALIGNMENT: usize> UnwindSafe for AlignedVec<ALIGNMENT>

§

impl<const CAP: usize> UnwindSafe for StringNonul<CAP>

§

impl<const CAP: usize> UnwindSafe for StringU8<CAP>

§

impl<const CAP: usize> UnwindSafe for StringU16<CAP>

§

impl<const CAP: usize> UnwindSafe for StringU32<CAP>

§

impl<const CAP: usize> UnwindSafe for StringUsize<CAP>

§

impl<const CAP: usize> UnwindSafe for GraphemeNonul<CAP>

§

impl<const CAP: usize> UnwindSafe for GraphemeU8<CAP>

§

impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for NoneOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for ReadOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for ReadWriteOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for WriteOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const IMPLEMENTS_INTOPYOBJECT_REF: bool, const IMPLEMENTS_INTOPYOBJECT: bool> UnwindSafe for ConvertField<IMPLEMENTS_INTOPYOBJECT_REF, IMPLEMENTS_INTOPYOBJECT>

§

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

§

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

§

impl<const OPCODE: u32> UnwindSafe for BadOpcode<OPCODE>

§

impl<const SH1: usize, const SH2: usize, const SH3: usize> UnwindSafe for XorShift8Custom<SH1, SH2, SH3>

§

impl<const V: i8> UnwindSafe for devela::_info::examples::niche::NonValueI8<V>

§

impl<const V: i8> UnwindSafe for devela::all::NonValueI8<V>

§

impl<const V: u8> UnwindSafe for NonValueU8<V>

§

impl<const V: u16> UnwindSafe for NonValueU16<V>