Trait PanicUnwindSafe

1.9.0 · Source
pub auto trait PanicUnwindSafe { }
Expand description

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

Re-exported from core::panic:: UnwindSafePanicUnwindSafe.


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§

§

impl UnwindSafe for Handle

§

impl UnwindSafe for Runtime

§

impl UnwindSafe for Notify

§

impl UnwindSafe for AbortHandle

1.9.0 · Source§

impl UnwindSafe for Condvar

1.59.0 · Source§

impl UnwindSafe for devela::all::Once

1.9.0 · Source§

impl UnwindSafe for devela::all::Stderr

1.9.0 · Source§

impl UnwindSafe for StderrLock<'_>

1.9.0 · Source§

impl UnwindSafe for devela::all::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,

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 devela::_dep::tokio::task::JoinHandle<T>

§

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

1.9.0 · Source§

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

1.28.0 · Source§

impl<T> UnwindSafe for NonZero<T>

1.70.0 · Source§

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

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 devela::all::RwLock<T>
where T: ?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 devela::_dep::_alloc::sync::Arc<T, A>

1.9.0 · Source§

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

1.80.0 · Source§

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

Auto implementors§

§

impl !UnwindSafe for devela::_dep::_std::fs::TryLockError

§

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

§

impl !UnwindSafe for devela::_dep::image::ImageError

§

impl !UnwindSafe for FromFileError

§

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

§

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::_dep::ureq::Error

§

impl !UnwindSafe for UiError

§

impl !UnwindSafe for AllError

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::decoder::Audio

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::decoder::Decoder

§

impl !UnwindSafe for Opened

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::decoder::Subtitle

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::decoder::Video

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::encoder::audio::Audio

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::encoder::Audio

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::encoder::Encoder

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::encoder::Subtitle

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::encoder::Video

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::encoder::subtitle::Subtitle

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::encoder::video::Video

§

impl !UnwindSafe for devela::_dep::ffmpeg_the_third::codec::Context

§

impl !UnwindSafe for DecodingError

§

impl !UnwindSafe for EncodingError

§

impl !UnwindSafe for ParameterError

§

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 ThreadBuilder

§

impl !UnwindSafe for ThreadPool

§

impl !UnwindSafe for ThreadPoolBuildError

§

impl !UnwindSafe for MixerSource

§

impl !UnwindSafe for SourcesQueueOutput

§

impl !UnwindSafe for EmptyCallback

§

impl !UnwindSafe for MediaSourceStream

§

impl !UnwindSafe for ProbeResult

§

impl !UnwindSafe for devela::_dep::tokio::process::Child

§

impl !UnwindSafe for devela::_dep::tokio::process::Command

§

impl !UnwindSafe for devela::_dep::tokio::runtime::Builder

§

impl !UnwindSafe for OwnedNotified

§

impl !UnwindSafe for JoinError

§

impl !UnwindSafe for LocalEnterGuard

§

impl !UnwindSafe for LocalSet

§

impl !UnwindSafe for devela::_dep::ureq::config::Config

§

impl !UnwindSafe for devela::_dep::ureq::http::request::Builder

§

impl !UnwindSafe for devela::_dep::ureq::http::request::Parts

§

impl !UnwindSafe for devela::_dep::ureq::http::response::Builder

§

impl !UnwindSafe for devela::_dep::ureq::http::response::Parts

§

impl !UnwindSafe for Extensions

§

impl !UnwindSafe for Agent

§

impl !UnwindSafe for Body

§

impl !UnwindSafe for AgentScope

§

impl !UnwindSafe for DefaultConnector

§

impl !UnwindSafe for devela::all::IoError

§

impl !UnwindSafe for MiniquadPixels

§

impl !UnwindSafe for devela::all::ProcessCommand

§

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

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for DebugAsHex

§

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

§

impl UnwindSafe for AtomicOrdering

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for OneSidedRangeBound

§

impl UnwindSafe for GetDisjointMutError

§

impl UnwindSafe for SearchStep

§

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

§

impl UnwindSafe for SeekFrom

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for devela::_dep::allocator_api2::collections::TryReserveErrorKind

§

impl UnwindSafe for CollectionAllocErr

§

impl UnwindSafe for CheckedCastError

§

impl UnwindSafe for PodCastError

§

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::ffmpeg_the_third::codec::encoder::Comparison

§

impl UnwindSafe for Decision

§

impl UnwindSafe for MotionEstimation

§

impl UnwindSafe for Compliance

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::Id

§

impl UnwindSafe for Profile

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::packet::side_data::Type

§

impl UnwindSafe for AAC

§

impl UnwindSafe for DTS

§

impl UnwindSafe for H264

§

impl UnwindSafe for HEVC

§

impl UnwindSafe for JPEG2000

§

impl UnwindSafe for MPEG2

§

impl UnwindSafe for MPEG4

§

impl UnwindSafe for VC1

§

impl UnwindSafe for VP9

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::subtitle::Type

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::threading::Type

§

impl UnwindSafe for AudioService

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::Channel

§

impl UnwindSafe for ChannelOrder

§

impl UnwindSafe for Discard

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::Error

§

impl UnwindSafe for FieldOrder

§

impl UnwindSafe for Rounding

§

impl UnwindSafe for Mode

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::format::Context

§

impl UnwindSafe for Pixel

§

impl UnwindSafe for Sample

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::resampling::Dither

§

impl UnwindSafe for Engine

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::resampling::Filter

§

impl UnwindSafe for ColorSpace

§

impl UnwindSafe for AVActiveFormatDescription

§

impl UnwindSafe for AVAppToDevMessageType

§

impl UnwindSafe for AVAudioServiceType

§

impl UnwindSafe for AVCRCId

§

impl UnwindSafe for AVChannel

§

impl UnwindSafe for AVChannelOrder

§

impl UnwindSafe for AVChromaLocation

§

impl UnwindSafe for AVClassCategory

§

impl UnwindSafe for AVCodecID

§

impl UnwindSafe for AVColorPrimaries

§

impl UnwindSafe for AVColorRange

§

impl UnwindSafe for AVColorSpace

§

impl UnwindSafe for AVColorTransferCharacteristic

§

impl UnwindSafe for AVDevToAppMessageType

§

impl UnwindSafe for AVDiscard

§

impl UnwindSafe for AVDownmixType

§

impl UnwindSafe for AVDurationEstimationMethod

§

impl UnwindSafe for AVEscapeMode

§

impl UnwindSafe for AVFieldOrder

§

impl UnwindSafe for AVFrameSideDataType

§

impl UnwindSafe for AVHMACType

§

impl UnwindSafe for AVHWDeviceType

§

impl UnwindSafe for AVHWFrameTransferDirection

§

impl UnwindSafe for AVIODataMarkerType

§

impl UnwindSafe for AVIODirEntryType

§

impl UnwindSafe for AVMatrixEncoding

§

impl UnwindSafe for AVMediaType

§

impl UnwindSafe for AVPacketSideDataType

§

impl UnwindSafe for AVPictureStructure

§

impl UnwindSafe for AVPictureType

§

impl UnwindSafe for AVPixelFormat

§

impl UnwindSafe for AVRounding

§

impl UnwindSafe for AVSampleFormat

§

impl UnwindSafe for AVSideDataParamChangeFlags

§

impl UnwindSafe for AVStereo3DType

§

impl UnwindSafe for AVStereo3DView

§

impl UnwindSafe for AVStreamParseType

§

impl UnwindSafe for AVSubtitleType

§

impl UnwindSafe for AVThreadMessageFlags

§

impl UnwindSafe for AVTimebaseSource

§

impl UnwindSafe for AVTimecodeFlag

§

impl UnwindSafe for DCTTransformType

§

impl UnwindSafe for RDFTransformType

§

impl UnwindSafe for SwrDitherType

§

impl UnwindSafe for SwrEngine

§

impl UnwindSafe for SwrFilterType

§

impl UnwindSafe for _bindgen_ty_2

§

impl UnwindSafe for _bindgen_ty_3

§

impl UnwindSafe for _bindgen_ty_4

§

impl UnwindSafe for _bindgen_ty_5

§

impl UnwindSafe for _bindgen_ty_6

§

impl UnwindSafe for _bindgen_ty_7

§

impl UnwindSafe for _bindgen_ty_8

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::chroma::Location

§

impl UnwindSafe for Primaries

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::color::Range

§

impl UnwindSafe for Space

§

impl UnwindSafe for TransferCharacteristic

§

impl UnwindSafe for ParsePixelError

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::format::sample::Type

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::frame::side_data::Type

§

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

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::media::Type

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::picture::Type

§

impl UnwindSafe for devela::_dep::flume::RecvError

§

impl UnwindSafe for devela::_dep::flume::RecvTimeoutError

§

impl UnwindSafe for devela::_dep::flume::TryRecvError

§

impl UnwindSafe for CoordinateSystem

§

impl UnwindSafe for HorizontalAlign

§

impl UnwindSafe for VerticalAlign

§

impl UnwindSafe for WrapStyle

§

impl UnwindSafe for devela::_dep::gilrs::Axis

§

impl UnwindSafe for devela::_dep::gilrs::Button

§

impl UnwindSafe for devela::_dep::gilrs::EventType

§

impl UnwindSafe for MappingError

§

impl UnwindSafe for MappingSource

§

impl UnwindSafe for PowerInfo

§

impl UnwindSafe for AxisOrBtn

§

impl UnwindSafe for BaseEffectType

§

impl UnwindSafe for DistanceModel

§

impl UnwindSafe for DistanceModelError

§

impl UnwindSafe for devela::_dep::gilrs::ff::Error

§

impl UnwindSafe for devela::_dep::gilrs::ff::Repeat

§

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

§

impl UnwindSafe for PixelDensityUnit

§

impl UnwindSafe for CompressionType

§

impl UnwindSafe for devela::_dep::image::codecs::png::FilterType

§

impl UnwindSafe for ArbitraryTuplType

§

impl UnwindSafe for PnmSubtype

§

impl UnwindSafe for SampleEncoding

§

impl UnwindSafe for ColorType

§

impl UnwindSafe for DynamicImage

§

impl UnwindSafe for ExtendedColorType

§

impl UnwindSafe for ImageFormat

§

impl UnwindSafe for ImageFormatHint

§

impl UnwindSafe for LimitErrorKind

§

impl UnwindSafe for ParameterErrorKind

§

impl UnwindSafe for UnsupportedErrorKind

§

impl UnwindSafe for devela::_dep::image::flat::Error

§

impl UnwindSafe for NormalForm

§

impl UnwindSafe for devela::_dep::image::imageops::FilterType

§

impl UnwindSafe for devela::_dep::image::metadata::Orientation

§

impl UnwindSafe for devela::_dep::itertools::Position

§

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 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 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 WaylandDecorations

§

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 devela::_dep::miniquad::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 devela::_dep::miniquad::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 devela::_dep::miniquad::log::Level

§

impl UnwindSafe for EglError

§

impl UnwindSafe for RepeatInfo

§

impl UnwindSafe for X11Error

§

impl UnwindSafe for devela::_dep::miniquad::native::module::Error

§

impl UnwindSafe for StreamTag

§

impl UnwindSafe for Hasher

§

impl UnwindSafe for Role

§

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 DecoderError

§

impl UnwindSafe for Function

§

impl UnwindSafe for AudioFormat

§

impl UnwindSafe for AudioStatus

§

impl UnwindSafe for AddMappingError

§

impl UnwindSafe for devela::_dep::sdl2::controller::Axis

§

impl UnwindSafe for devela::_dep::sdl2::controller::Button

§

impl UnwindSafe for MappingStatus

§

impl UnwindSafe for devela::_dep::sdl2::Error

§

impl UnwindSafe for IntegerOrSdlError

§

impl UnwindSafe for DisplayEvent

§

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

§

impl UnwindSafe for devela::_dep::sdl2::event::EventType

§

impl UnwindSafe for WindowEvent

§

impl UnwindSafe for PrefPathError

§

impl UnwindSafe for devela::_dep::sdl2::hint::Hint

§

impl UnwindSafe for HatState

§

impl UnwindSafe for PowerLevel

§

impl UnwindSafe for Scancode

§

impl UnwindSafe for DIR

§

impl UnwindSafe for FILE

§

impl UnwindSafe for timezone

§

impl UnwindSafe for tpacket_versions

§

impl UnwindSafe for Category

§

impl UnwindSafe for Priority

§

impl UnwindSafe for ShowMessageError

§

impl UnwindSafe for Fading

§

impl UnwindSafe for MusicType

§

impl UnwindSafe for devela::_dep::sdl2::mouse::MouseButton

§

impl UnwindSafe for MouseWheelDirection

§

impl UnwindSafe for SystemCursor

§

impl UnwindSafe for PixelFormatEnum

§

impl UnwindSafe for BlendMode

§

impl UnwindSafe for ClippingRect

§

impl UnwindSafe for ScaleMode

§

impl UnwindSafe for TargetRenderError

§

impl UnwindSafe for devela::_dep::sdl2::render::TextureAccess

§

impl UnwindSafe for TextureValueError

§

impl UnwindSafe for UpdateTextureError

§

impl UnwindSafe for UpdateTextureYUVError

§

impl UnwindSafe for SDL_ArrayOrder

§

impl UnwindSafe for SDL_AssertState

§

impl UnwindSafe for SDL_AudioStatus

§

impl UnwindSafe for SDL_BitmapOrder

§

impl UnwindSafe for SDL_BlendFactor

§

impl UnwindSafe for SDL_BlendMode

§

impl UnwindSafe for SDL_BlendOperation

§

impl UnwindSafe for SDL_DUMMY_ENUM

§

impl UnwindSafe for SDL_DisplayEventID

§

impl UnwindSafe for SDL_DisplayOrientation

§

impl UnwindSafe for SDL_EventType

§

impl UnwindSafe for SDL_FlashOperation

§

impl UnwindSafe for SDL_GLContextResetNotification

§

impl UnwindSafe for SDL_GLattr

§

impl UnwindSafe for SDL_GLcontextFlag

§

impl UnwindSafe for SDL_GLcontextReleaseFlag

§

impl UnwindSafe for SDL_GLprofile

§

impl UnwindSafe for SDL_GameControllerAxis

§

impl UnwindSafe for SDL_GameControllerBindType

§

impl UnwindSafe for SDL_GameControllerButton

§

impl UnwindSafe for SDL_GameControllerType

§

impl UnwindSafe for SDL_HintPriority

§

impl UnwindSafe for SDL_HitTestResult

§

impl UnwindSafe for SDL_JoystickPowerLevel

§

impl UnwindSafe for SDL_JoystickType

§

impl UnwindSafe for SDL_KeyCode

§

impl UnwindSafe for SDL_Keymod

§

impl UnwindSafe for SDL_LogCategory

§

impl UnwindSafe for SDL_LogPriority

§

impl UnwindSafe for SDL_MessageBoxButtonFlags

§

impl UnwindSafe for SDL_MessageBoxColorType

§

impl UnwindSafe for SDL_MessageBoxFlags

§

impl UnwindSafe for SDL_MouseWheelDirection

§

impl UnwindSafe for SDL_PackedLayout

§

impl UnwindSafe for SDL_PackedOrder

§

impl UnwindSafe for SDL_PixelFormatEnum

§

impl UnwindSafe for SDL_PixelType

§

impl UnwindSafe for SDL_PowerState

§

impl UnwindSafe for SDL_RendererFlags

§

impl UnwindSafe for SDL_RendererFlip

§

impl UnwindSafe for SDL_SYSWM_TYPE

§

impl UnwindSafe for SDL_ScaleMode

§

impl UnwindSafe for SDL_Scancode

§

impl UnwindSafe for SDL_SensorType

§

impl UnwindSafe for SDL_SystemCursor

§

impl UnwindSafe for SDL_TextureAccess

§

impl UnwindSafe for SDL_TextureModulate

§

impl UnwindSafe for SDL_ThreadPriority

§

impl UnwindSafe for SDL_TouchDeviceType

§

impl UnwindSafe for SDL_WindowEventID

§

impl UnwindSafe for SDL_WindowFlags

§

impl UnwindSafe for SDL_YUV_CONVERSION_MODE

§

impl UnwindSafe for SDL_bool

§

impl UnwindSafe for SDL_errorcode

§

impl UnwindSafe for SDL_eventaction

§

impl UnwindSafe for WindowShapeMode

§

impl UnwindSafe for XIMCaretDirection

§

impl UnwindSafe for XIMCaretStyle

§

impl UnwindSafe for XIMStatusDataType

§

impl UnwindSafe for XOrientation

§

impl UnwindSafe for FontError

§

impl UnwindSafe for Hinting

§

impl UnwindSafe for OpenUrlError

§

impl UnwindSafe for FlashOperation

§

impl UnwindSafe for FullscreenType

§

impl UnwindSafe for GLProfile

§

impl UnwindSafe for devela::_dep::sdl2::video::Orientation

§

impl UnwindSafe for SwapInterval

§

impl UnwindSafe for WindowBuildError

§

impl UnwindSafe for WindowPos

§

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 devela::_dep::symphonia::core::meta::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 SampleFormat

§

impl UnwindSafe for DiskKind

§

impl UnwindSafe for IpNetworkFromStrError

§

impl UnwindSafe for KillError

§

impl UnwindSafe for MacAddrFromStrError

§

impl UnwindSafe for ProcessStatus

§

impl UnwindSafe for Signal

§

impl UnwindSafe for ThreadKind

§

impl UnwindSafe for UpdateKind

§

impl UnwindSafe for RuntimeFlavor

§

impl UnwindSafe for devela::_dep::tokio::sync::broadcast::error::RecvError

§

impl UnwindSafe for devela::_dep::tokio::sync::broadcast::error::TryRecvError

§

impl UnwindSafe for TryAcquireError

§

impl UnwindSafe for devela::_dep::tokio::sync::mpsc::error::TryRecvError

§

impl UnwindSafe for devela::_dep::tokio::sync::oneshot::error::TryRecvError

§

impl UnwindSafe for Item

§

impl UnwindSafe for devela::_dep::toml_edit::Offset

§

impl UnwindSafe for devela::_dep::toml_edit::Value

§

impl UnwindSafe for devela::_dep::toml_edit::ser::Error

§

impl UnwindSafe for GraphemeIncomplete

§

impl UnwindSafe for AutoHeaderValue

§

impl UnwindSafe for IpFamily

§

impl UnwindSafe for RedirectAuthHeaders

§

impl UnwindSafe for ProxyProtocol

§

impl UnwindSafe for devela::_dep::ureq::Timeout

§

impl UnwindSafe for devela::_dep::ureq::unversioned::transport::time::Duration

§

impl UnwindSafe for devela::_dep::ureq::unversioned::transport::time::Instant

§

impl UnwindSafe for Endianness

§

impl UnwindSafe for Needed

§

impl UnwindSafe for StrContext

§

impl UnwindSafe for StrContextValue

§

impl UnwindSafe for CompareResult

§

impl UnwindSafe for ExampleEnumIntU8

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for NumError

§

impl UnwindSafe for devela::num::Sign

§

impl UnwindSafe for UnitBi

§

impl UnwindSafe for UnitSi

§

impl UnwindSafe for devela::text::AsciiChar

§

impl UnwindSafe for InvalidText

§

impl UnwindSafe for TextError

§

impl UnwindSafe for AllErrorKind

§

impl UnwindSafe for AngleDirection

§

impl UnwindSafe for AngleKind

§

impl UnwindSafe for AnsiColor3b

§

impl UnwindSafe for devela::all::AtomicOrdering

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for CompressionMode

§

impl UnwindSafe for DataError

§

impl UnwindSafe for DataNotEnough

§

impl UnwindSafe for devela::all::Dither

§

impl UnwindSafe for EncodingMode

§

impl UnwindSafe for EventButton

§

impl UnwindSafe for EventButtonState

§

impl UnwindSafe for EventPointerType

§

impl UnwindSafe for devela::all::FmtAlignment

§

impl UnwindSafe for devela::all::ImageError

§

impl UnwindSafe for ErrorKind

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for JsValue

§

impl UnwindSafe for devela::all::Key

§

impl UnwindSafe for KeyAlpha

§

impl UnwindSafe for KeyFfi

§

impl UnwindSafe for KeyMedia

§

impl UnwindSafe for KeyMod

§

impl UnwindSafe for KeyPad

§

impl UnwindSafe for KeyState

§

impl UnwindSafe for LinuxError

§

impl UnwindSafe for devela::all::LogLevel

§

impl UnwindSafe for LevelFilter

§

impl UnwindSafe for MismatchedBounds

§

impl UnwindSafe for Month

§

impl UnwindSafe for devela::all::MpscRecvTimeoutError

§

impl UnwindSafe for devela::all::MpscTryRecvError

§

impl UnwindSafe for NotAvailable

§

impl UnwindSafe for devela::all::Ordering

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for PartialSpace

§

impl UnwindSafe for devela::all::PixelFormat

§

impl UnwindSafe for SixelError

§

impl UnwindSafe for SixelMean

§

impl UnwindSafe for SixelQuality

§

impl UnwindSafe for SixelSplit

§

impl UnwindSafe for devela::all::SocketAddr

§

impl UnwindSafe for Shutdown

§

impl UnwindSafe for TimeError

§

impl UnwindSafe for TimeGranularity

§

impl UnwindSafe for VarError

§

impl UnwindSafe for WaveletUnitRole

§

impl UnwindSafe for WebEventKind

§

impl UnwindSafe for WebKeyLocation

§

impl UnwindSafe for WebPermission

§

impl UnwindSafe for WebPermissionState

§

impl UnwindSafe for WebWorkerError

§

impl UnwindSafe for devela::all::Weekday

§

impl UnwindSafe for c_void

§

impl UnwindSafe for devela::_core::alloc::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 ByteStr

§

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 FormattingOptions

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

impl UnwindSafe for Assume

§

impl UnwindSafe for devela::_core::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for devela::_core::str::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 devela::_dep::_alloc::alloc::Global

§

impl UnwindSafe for ByteString

§

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 BacktraceFrame

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for PipeReader

§

impl UnwindSafe for PipeWriter

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for OwnedFd

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for devela::_dep::_std::os::linux::raw::stat

§

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

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for UCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for NormalizeError

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for DefaultRandomSource

§

impl UnwindSafe for WouldBlock

§

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

§

impl UnwindSafe for devela::_dep::allocator_api2::alloc::AllocError

§

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

§

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

§

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

§

impl UnwindSafe for AllocErr

§

impl UnwindSafe for BoxBytes

§

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 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 AttachmentType

§

impl UnwindSafe for AudioType

§

impl UnwindSafe for ChannelLayoutMaskIter

§

impl UnwindSafe for DataType

§

impl UnwindSafe for SubtitleType

§

impl UnwindSafe for UnknownType

§

impl UnwindSafe for VideoType

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::decoder::slice::Flags

§

impl UnwindSafe for Check

§

impl UnwindSafe for Conceal

§

impl UnwindSafe for CodecDescriptorIter

§

impl UnwindSafe for MimeTypeIter

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::packet::Flags

§

impl UnwindSafe for ProfileIter

§

impl UnwindSafe for Capabilities

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::CodecDescriptor

§

impl UnwindSafe for CodecProperties

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::Debug

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::Flags

§

impl UnwindSafe for Parameters

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::subtitle::Flags

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::codec::threading::Config

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::device::input::AudioIter

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::device::input::VideoIter

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::device::output::AudioIter

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::device::output::VideoIter

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::filter::Flags

§

impl UnwindSafe for Graph

§

impl UnwindSafe for Destructor

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::format::context::Input

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::format::context::Output

§

impl UnwindSafe for DemuxerIter

§

impl UnwindSafe for MuxerIter

§

impl UnwindSafe for Disposition

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::format::Flags

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::format::Input

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::format::Output

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::resampling::context::Definition

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::resampling::Context

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::resampling::Delay

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::resampling::Flags

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::scaling::context::Definition

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::scaling::Context

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::scaling::Filter

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::software::scaling::Flags

§

impl UnwindSafe for ChannelCustom

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::ChannelLayoutIter

§

impl UnwindSafe for ChannelLayoutMask

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::Filter

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::Frame

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::Packet

§

impl UnwindSafe for Rational

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::Subtitle

§

impl UnwindSafe for AVAES

§

impl UnwindSafe for AVAudioFifo

§

impl UnwindSafe for AVBPrint

§

impl UnwindSafe for AVBlowfish

§

impl UnwindSafe for AVBuffer

§

impl UnwindSafe for AVBufferPool

§

impl UnwindSafe for AVBufferRef

§

impl UnwindSafe for AVBufferSrcParameters

§

impl UnwindSafe for AVCAMELLIA

§

impl UnwindSafe for AVCAST5

§

impl UnwindSafe for AVCPBProperties

§

impl UnwindSafe for AVChannelCustom

§

impl UnwindSafe for AVChannelLayout

§

impl UnwindSafe for AVChapter

§

impl UnwindSafe for AVClass

§

impl UnwindSafe for AVCodec

§

impl UnwindSafe for AVCodecContext

§

impl UnwindSafe for AVCodecDescriptor

§

impl UnwindSafe for AVCodecHWConfig

§

impl UnwindSafe for AVCodecInternal

§

impl UnwindSafe for AVCodecParameters

§

impl UnwindSafe for AVCodecParser

§

impl UnwindSafe for AVCodecParserContext

§

impl UnwindSafe for AVCodecTag

§

impl UnwindSafe for AVComponentDescriptor

§

impl UnwindSafe for AVDRMDeviceContext

§

impl UnwindSafe for AVDRMFrameDescriptor

§

impl UnwindSafe for AVDRMLayerDescriptor

§

impl UnwindSafe for AVDRMObjectDescriptor

§

impl UnwindSafe for AVDRMPlaneDescriptor

§

impl UnwindSafe for AVDVProfile

§

impl UnwindSafe for AVDeviceInfo

§

impl UnwindSafe for AVDeviceInfoList

§

impl UnwindSafe for AVDeviceRect

§

impl UnwindSafe for AVDictionary

§

impl UnwindSafe for AVDictionaryEntry

§

impl UnwindSafe for AVDownmixInfo

§

impl UnwindSafe for AVExpr

§

impl UnwindSafe for AVFifo

§

impl UnwindSafe for AVFifoBuffer

§

impl UnwindSafe for AVFilter

§

impl UnwindSafe for AVFilterChain

§

impl UnwindSafe for AVFilterChannelLayouts

§

impl UnwindSafe for AVFilterCommand

§

impl UnwindSafe for AVFilterContext

§

impl UnwindSafe for AVFilterFormats

§

impl UnwindSafe for AVFilterFormatsConfig

§

impl UnwindSafe for AVFilterGraph

§

impl UnwindSafe for AVFilterGraphInternal

§

impl UnwindSafe for AVFilterGraphSegment

§

impl UnwindSafe for AVFilterInOut

§

impl UnwindSafe for AVFilterInternal

§

impl UnwindSafe for AVFilterPad

§

impl UnwindSafe for AVFilterPadParams

§

impl UnwindSafe for AVFilterParams

§

impl UnwindSafe for AVFormatContext

§

impl UnwindSafe for AVFrame

§

impl UnwindSafe for AVFrameSideData

§

impl UnwindSafe for AVHMAC

§

impl UnwindSafe for AVHWAccel

§

impl UnwindSafe for AVHWDeviceContext

§

impl UnwindSafe for AVHWDeviceInternal

§

impl UnwindSafe for AVHWFramesConstraints

§

impl UnwindSafe for AVHWFramesContext

§

impl UnwindSafe for AVHWFramesInternal

§

impl UnwindSafe for AVHashContext

§

impl UnwindSafe for AVIOContext

§

impl UnwindSafe for AVIODirContext

§

impl UnwindSafe for AVIODirEntry

§

impl UnwindSafe for AVIOInterruptCB

§

impl UnwindSafe for AVIndexEntry

§

impl UnwindSafe for AVInputFormat

§

impl UnwindSafe for AVLFG

§

impl UnwindSafe for AVMD5

§

impl UnwindSafe for AVMotionVector

§

impl UnwindSafe for AVMurMur3

§

impl UnwindSafe for AVOption

§

impl UnwindSafe for AVOptionRange

§

impl UnwindSafe for AVOptionRanges

§

impl UnwindSafe for AVOptionType

§

impl UnwindSafe for AVOutputFormat

§

impl UnwindSafe for AVPacket

§

impl UnwindSafe for AVPacketList

§

impl UnwindSafe for AVPacketSideData

§

impl UnwindSafe for AVPanScan

§

impl UnwindSafe for AVPixFmtDescriptor

§

impl UnwindSafe for AVProbeData

§

impl UnwindSafe for AVProducerReferenceTime

§

impl UnwindSafe for AVProfile

§

impl UnwindSafe for AVProgram

§

impl UnwindSafe for AVRIPEMD

§

impl UnwindSafe for AVRational

§

impl UnwindSafe for AVRegionOfInterest

§

impl UnwindSafe for AVReplayGain

§

impl UnwindSafe for AVSHA512

§

impl UnwindSafe for AVSHA

§

impl UnwindSafe for AVStereo3D

§

impl UnwindSafe for AVStream

§

impl UnwindSafe for AVSubtitle

§

impl UnwindSafe for AVSubtitleRect

§

impl UnwindSafe for AVTWOFISH

§

impl UnwindSafe for AVThreadMessageQueue

§

impl UnwindSafe for AVTimecode

§

impl UnwindSafe for AVVorbisParseContext

§

impl UnwindSafe for AVXTEA

§

impl UnwindSafe for DCTContext

§

impl UnwindSafe for FFTComplex

§

impl UnwindSafe for FFTContext

§

impl UnwindSafe for RDFTContext

§

impl UnwindSafe for RcOverride

§

impl UnwindSafe for SwrContext

§

impl UnwindSafe for SwsContext

§

impl UnwindSafe for SwsFilter

§

impl UnwindSafe for SwsVector

§

impl UnwindSafe for URLContext

§

impl UnwindSafe for _IO_FILE

§

impl UnwindSafe for _IO_codecvt

§

impl UnwindSafe for _IO_marker

§

impl UnwindSafe for _IO_wide_data

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::sys::__va_list_tag

§

impl UnwindSafe for ff_pad_helper_AVBPrint

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::sys::tm

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::format::pixel::Descriptor

§

impl UnwindSafe for Buffer

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::frame::Audio

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::frame::Flags

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::frame::Packet

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::frame::Video

§

impl UnwindSafe for Interrupt

§

impl UnwindSafe for LevelError

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::log::Flags

§

impl UnwindSafe for devela::_dep::ffmpeg_the_third::util::option::Type

§

impl UnwindSafe for CharacterData

§

impl UnwindSafe for GlyphRasterConfig

§

impl UnwindSafe for LayoutSettings

§

impl UnwindSafe for LinePosition

§

impl UnwindSafe for devela::_dep::fontdue::Font

§

impl UnwindSafe for FontSettings

§

impl UnwindSafe for LineMetrics

§

impl UnwindSafe for Metrics

§

impl UnwindSafe for OutlineBounds

§

impl UnwindSafe for Jitter

§

impl UnwindSafe for devela::_dep::gilrs::ev::filter::Repeat

§

impl UnwindSafe for AxisData

§

impl UnwindSafe for devela::_dep::gilrs::ev::state::ButtonData

§

impl UnwindSafe for GamepadState

§

impl UnwindSafe for Code

§

impl UnwindSafe for BaseEffect

§

impl UnwindSafe for Effect

§

impl UnwindSafe for EffectBuilder

§

impl UnwindSafe for Envelope

§

impl UnwindSafe for Replay

§

impl UnwindSafe for Ticks

§

impl UnwindSafe for devela::_dep::gilrs::Event

§

impl UnwindSafe for GamepadId

§

impl UnwindSafe for Gilrs

§

impl UnwindSafe for GilrsBuilder

§

impl UnwindSafe for MappingData

§

impl UnwindSafe for PixelDensity

§

impl UnwindSafe for ArbitraryHeader

§

impl UnwindSafe for BitmapHeader

§

impl UnwindSafe for GraymapHeader

§

impl UnwindSafe for PixmapHeader

§

impl UnwindSafe for PnmHeader

§

impl UnwindSafe for LimitError

§

impl UnwindSafe for UnsupportedError

§

impl UnwindSafe for SampleLayout

§

impl UnwindSafe for BiLevel

§

impl UnwindSafe for devela::_dep::image::math::Rect

§

impl UnwindSafe for devela::_dep::image::Delay

§

impl UnwindSafe for devela::_dep::image::Frame

§

impl UnwindSafe for LimitSupport

§

impl UnwindSafe for Limits

§

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 DefaultCustom

§

impl UnwindSafe for Extension

§

impl UnwindSafe for PosixCustom

§

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 SpanFieldwise

§

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 devela::_dep::jiff::tz::Offset

§

impl UnwindSafe for OffsetArithmetic

§

impl UnwindSafe for OffsetRound

§

impl UnwindSafe for TimeZone

§

impl UnwindSafe for TimeZoneDatabase

§

impl UnwindSafe for CpalBackend

§

impl UnwindSafe for CpalBackendSettings

§

impl UnwindSafe for MockBackend

§

impl UnwindSafe for MockBackendSettings

§

impl UnwindSafe for 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 devela::_dep::kira::sound::Region

§

impl UnwindSafe for Capacities

§

impl UnwindSafe for Decibels

§

impl UnwindSafe for devela::_dep::kira::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 ParseLevelError

§

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 Icon

§

impl UnwindSafe for Egl

§

impl UnwindSafe for LibEgl

§

impl UnwindSafe for C2RustUnnamed_2

§

impl UnwindSafe for C2RustUnnamed_3

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::Depth

§

impl UnwindSafe for LibX11

§

impl UnwindSafe for LibXkbCommon

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::Screen

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::ScreenFormat

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::Visual

§

impl UnwindSafe for X11Extensions

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XAnyEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XButtonEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XCirculateEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XCirculateRequestEvent

§

impl UnwindSafe for XClassHint

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XClientMessageEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XColor

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XColormapEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XConfigureEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XConfigureRequestEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XCreateWindowEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XCrossingEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XDestroyWindowEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XErrorEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XExposeEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XFocusChangeEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XGenericEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XGenericEventCookie

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XGraphicsExposeEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XGravityEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XKeyEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XKeymapEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XMapEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XMapRequestEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XMappingEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XMotionEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XNoExposeEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XPropertyEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XReparentEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XResizeRequestEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XSelectionClearEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XSelectionEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XSelectionRequestEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XSetWindowAttributes

§

impl UnwindSafe for XSizeHints

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XUnmapEvent

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XVisibilityEvent

§

impl UnwindSafe for XVisualInfo

§

impl UnwindSafe for XWMHints

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::XWindowAttributes

§

impl UnwindSafe for XrmValue

§

impl UnwindSafe for _XComposeStatus

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::_XExtData

§

impl UnwindSafe for X11Display

§

impl UnwindSafe for Module

§

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 devela::_dep::miniquad::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::orion::aead::streaming::Nonce

§

impl UnwindSafe for StreamOpener

§

impl UnwindSafe for StreamSealer

§

impl UnwindSafe for devela::_dep::orion::aead::SecretKey

§

impl UnwindSafe for devela::_dep::orion::auth::Tag

§

impl UnwindSafe for UnknownCryptoError

§

impl UnwindSafe for devela::_dep::orion::hash::Digest

§

impl UnwindSafe for devela::_dep::orion::hazardous::aead::chacha20poly1305::Nonce

§

impl UnwindSafe for devela::_dep::orion::hazardous::aead::chacha20poly1305::SecretKey

§

impl UnwindSafe for StreamXChaCha20Poly1305

§

impl UnwindSafe for SharedKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::blake2::blake2b::Blake2b

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::sha2::sha256::Digest

§

impl UnwindSafe for Sha256

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::sha2::sha384::Digest

§

impl UnwindSafe for Sha384

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::sha2::sha512::Digest

§

impl UnwindSafe for Sha512

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::sha3::sha3_224::Digest

§

impl UnwindSafe for Sha3_224

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::sha3::sha3_256::Digest

§

impl UnwindSafe for Sha3_256

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::sha3::sha3_384::Digest

§

impl UnwindSafe for Sha3_384

§

impl UnwindSafe for devela::_dep::orion::hazardous::hash::sha3::sha3_512::Digest

§

impl UnwindSafe for Sha3_512

§

impl UnwindSafe for Shake128

§

impl UnwindSafe for Shake256

§

impl UnwindSafe for DHKEM_X25519_SHA256_CHACHA20

§

impl UnwindSafe for devela::_dep::orion::hazardous::kdf::pbkdf2::sha256::Password

§

impl UnwindSafe for devela::_dep::orion::hazardous::kdf::pbkdf2::sha384::Password

§

impl UnwindSafe for devela::_dep::orion::hazardous::kdf::pbkdf2::sha512::Password

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem512::Ciphertext

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem512::DecapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem512::EncapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem512::KeyPair

§

impl UnwindSafe for MlKem512

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem512::SharedSecret

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem768::Ciphertext

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem768::DecapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem768::EncapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem768::KeyPair

§

impl UnwindSafe for MlKem768

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem768::SharedSecret

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem1024::Ciphertext

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem1024::DecapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem1024::EncapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem1024::KeyPair

§

impl UnwindSafe for MlKem1024

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem1024::Seed

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::mlkem1024::SharedSecret

§

impl UnwindSafe for DhKem

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::x25519_hkdf_sha256::SharedSecret

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::xwing::Ciphertext

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::xwing::DecapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::xwing::EncapsulationKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::xwing::KeyPair

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::xwing::Seed

§

impl UnwindSafe for devela::_dep::orion::hazardous::kem::xwing::SharedSecret

§

impl UnwindSafe for XWing

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::blake2b::Blake2b

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::blake2b::SecretKey

§

impl UnwindSafe for HmacSha256

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::hmac::sha256::SecretKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::hmac::sha256::Tag

§

impl UnwindSafe for HmacSha384

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::hmac::sha384::SecretKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::hmac::sha384::Tag

§

impl UnwindSafe for HmacSha512

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::hmac::sha512::SecretKey

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::hmac::sha512::Tag

§

impl UnwindSafe for OneTimeKey

§

impl UnwindSafe for Poly1305

§

impl UnwindSafe for devela::_dep::orion::hazardous::mac::poly1305::Tag

§

impl UnwindSafe for Salt

§

impl UnwindSafe for EphemeralClientSession

§

impl UnwindSafe for EphemeralServerSession

§

impl UnwindSafe for PrivateKey

§

impl UnwindSafe for PublicKey

§

impl UnwindSafe for SessionKeys

§

impl UnwindSafe for devela::_dep::orion::pwhash::Password

§

impl UnwindSafe for PasswordHash

§

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 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 _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 PyGenericAlias

§

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 PyRange

§

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 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 SamplesBuffer

§

impl UnwindSafe for Settings

§

impl UnwindSafe for Mixer

§

impl UnwindSafe for SourcesQueueInput

§

impl UnwindSafe for Chirp

§

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

§

impl UnwindSafe for LimitSettings

§

impl UnwindSafe for SawtoothWave

§

impl UnwindSafe for SignalGenerator

§

impl UnwindSafe for SineWave

§

impl UnwindSafe for SquareWave

§

impl UnwindSafe for TriangleWave

§

impl UnwindSafe for Zero

§

impl UnwindSafe for StaticSamplesBuffer

§

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

§

impl UnwindSafe for SpatialSink

§

impl UnwindSafe for m512

§

impl UnwindSafe for m512d

§

impl UnwindSafe for m512i

§

impl UnwindSafe for AudioCVT

§

impl UnwindSafe for AudioSpec

§

impl UnwindSafe for AudioSpecDesired

§

impl UnwindSafe for AudioSpecWAV

§

impl UnwindSafe for devela::_dep::sdl2::audio::DriverIterator

§

impl UnwindSafe for ClipboardUtil

§

impl UnwindSafe for GameController

§

impl UnwindSafe for EventSender

§

impl UnwindSafe for FPSManager

§

impl UnwindSafe for Haptic

§

impl UnwindSafe for devela::_dep::sdl2::image::InitFlag

§

impl UnwindSafe for Sdl2ImageContext

§

impl UnwindSafe for Guid

§

impl UnwindSafe for Joystick

§

impl UnwindSafe for KeyboardUtil

§

impl UnwindSafe for Keycode

§

impl UnwindSafe for Mod

§

impl UnwindSafe for TextInputUtil

§

impl UnwindSafe for Dl_info

§

impl UnwindSafe for Elf32_Chdr

§

impl UnwindSafe for Elf32_Ehdr

§

impl UnwindSafe for Elf32_Phdr

§

impl UnwindSafe for Elf32_Shdr

§

impl UnwindSafe for Elf32_Sym

§

impl UnwindSafe for Elf64_Chdr

§

impl UnwindSafe for Elf64_Ehdr

§

impl UnwindSafe for Elf64_Phdr

§

impl UnwindSafe for Elf64_Shdr

§

impl UnwindSafe for Elf64_Sym

§

impl UnwindSafe for __c_anonymous__kernel_fsid_t

§

impl UnwindSafe for __c_anonymous_elf32_rel

§

impl UnwindSafe for __c_anonymous_elf32_rela

§

impl UnwindSafe for __c_anonymous_elf64_rel

§

impl UnwindSafe for __c_anonymous_elf64_rela

§

impl UnwindSafe for __c_anonymous_ifru_map

§

impl UnwindSafe for __c_anonymous_ptrace_syscall_info_entry

§

impl UnwindSafe for __c_anonymous_ptrace_syscall_info_exit

§

impl UnwindSafe for __c_anonymous_ptrace_syscall_info_seccomp

§

impl UnwindSafe for __c_anonymous_sockaddr_can_j1939

§

impl UnwindSafe for __c_anonymous_sockaddr_can_tp

§

impl UnwindSafe for __exit_status

§

impl UnwindSafe for __timeval

§

impl UnwindSafe for _libc_fpstate

§

impl UnwindSafe for _libc_fpxreg

§

impl UnwindSafe for _libc_xmmreg

§

impl UnwindSafe for addrinfo

§

impl UnwindSafe for af_alg_iv

§

impl UnwindSafe for aiocb

§

impl UnwindSafe for arpd_request

§

impl UnwindSafe for arphdr

§

impl UnwindSafe for arpreq

§

impl UnwindSafe for arpreq_old

§

impl UnwindSafe for can_filter

§

impl UnwindSafe for can_frame

§

impl UnwindSafe for canfd_frame

§

impl UnwindSafe for canxl_frame

§

impl UnwindSafe for clone_args

§

impl UnwindSafe for cmsghdr

§

impl UnwindSafe for cpu_set_t

§

impl UnwindSafe for dirent64

§

impl UnwindSafe for dirent

§

impl UnwindSafe for dl_phdr_info

§

impl UnwindSafe for dmabuf_cmsg

§

impl UnwindSafe for dmabuf_token

§

impl UnwindSafe for dqblk

§

impl UnwindSafe for epoll_event

§

impl UnwindSafe for epoll_params

§

impl UnwindSafe for fanotify_event_info_error

§

impl UnwindSafe for fanotify_event_info_fid

§

impl UnwindSafe for fanotify_event_info_header

§

impl UnwindSafe for fanotify_event_info_pidfd

§

impl UnwindSafe for fanotify_event_metadata

§

impl UnwindSafe for fanotify_response

§

impl UnwindSafe for fanout_args

§

impl UnwindSafe for devela::_dep::sdl2::libc::fd_set

§

impl UnwindSafe for ff_condition_effect

§

impl UnwindSafe for ff_constant_effect

§

impl UnwindSafe for ff_effect

§

impl UnwindSafe for ff_envelope

§

impl UnwindSafe for ff_periodic_effect

§

impl UnwindSafe for ff_ramp_effect

§

impl UnwindSafe for ff_replay

§

impl UnwindSafe for ff_rumble_effect

§

impl UnwindSafe for ff_trigger

§

impl UnwindSafe for file_clone_range

§

impl UnwindSafe for flock64

§

impl UnwindSafe for flock

§

impl UnwindSafe for fpos64_t

§

impl UnwindSafe for fpos_t

§

impl UnwindSafe for fsid_t

§

impl UnwindSafe for genlmsghdr

§

impl UnwindSafe for glob64_t

§

impl UnwindSafe for glob_t

§

impl UnwindSafe for group

§

impl UnwindSafe for hostent

§

impl UnwindSafe for hwtstamp_config

§

impl UnwindSafe for if_nameindex

§

impl UnwindSafe for ifaddrs

§

impl UnwindSafe for ifconf

§

impl UnwindSafe for ifreq

§

impl UnwindSafe for in6_addr

§

impl UnwindSafe for in6_ifreq

§

impl UnwindSafe for in6_pktinfo

§

impl UnwindSafe for in6_rtmsg

§

impl UnwindSafe for in_addr

§

impl UnwindSafe for in_pktinfo

§

impl UnwindSafe for inotify_event

§

impl UnwindSafe for input_absinfo

§

impl UnwindSafe for input_event

§

impl UnwindSafe for input_id

§

impl UnwindSafe for input_keymap_entry

§

impl UnwindSafe for input_mask

§

impl UnwindSafe for iocb

§

impl UnwindSafe for iovec

§

impl UnwindSafe for ip_mreq

§

impl UnwindSafe for ip_mreq_source

§

impl UnwindSafe for ip_mreqn

§

impl UnwindSafe for ipc_perm

§

impl UnwindSafe for ipv6_mreq

§

impl UnwindSafe for itimerspec

§

impl UnwindSafe for itimerval

§

impl UnwindSafe for iw_discarded

§

impl UnwindSafe for iw_encode_ext

§

impl UnwindSafe for iw_event

§

impl UnwindSafe for iw_freq

§

impl UnwindSafe for iw_michaelmicfailure

§

impl UnwindSafe for iw_missed

§

impl UnwindSafe for iw_mlme

§

impl UnwindSafe for iw_param

§

impl UnwindSafe for iw_pmkid_cand

§

impl UnwindSafe for iw_pmksa

§

impl UnwindSafe for iw_point

§

impl UnwindSafe for iw_priv_args

§

impl UnwindSafe for iw_quality

§

impl UnwindSafe for iw_range

§

impl UnwindSafe for iw_scan_req

§

impl UnwindSafe for iw_statistics

§

impl UnwindSafe for iw_thrspy

§

impl UnwindSafe for iwreq

§

impl UnwindSafe for j1939_filter

§

impl UnwindSafe for lconv

§

impl UnwindSafe for linger

§

impl UnwindSafe for mallinfo2

§

impl UnwindSafe for mallinfo

§

impl UnwindSafe for devela::_dep::sdl2::libc::max_align_t

§

impl UnwindSafe for mbstate_t

§

impl UnwindSafe for mcontext_t

§

impl UnwindSafe for mmsghdr

§

impl UnwindSafe for mnt_ns_info

§

impl UnwindSafe for mntent

§

impl UnwindSafe for mount_attr

§

impl UnwindSafe for mq_attr

§

impl UnwindSafe for msghdr

§

impl UnwindSafe for msginfo

§

impl UnwindSafe for msqid_ds

§

impl UnwindSafe for nl_mmap_hdr

§

impl UnwindSafe for nl_mmap_req

§

impl UnwindSafe for nl_pktinfo

§

impl UnwindSafe for nlattr

§

impl UnwindSafe for nlmsgerr

§

impl UnwindSafe for nlmsghdr

§

impl UnwindSafe for ntptimeval

§

impl UnwindSafe for open_how

§

impl UnwindSafe for option

§

impl UnwindSafe for packet_mreq

§

impl UnwindSafe for passwd

§

impl UnwindSafe for pidfd_info

§

impl UnwindSafe for pollfd

§

impl UnwindSafe for posix_spawn_file_actions_t

§

impl UnwindSafe for posix_spawnattr_t

§

impl UnwindSafe for protoent

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_attr_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_barrier_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_barrierattr_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_cond_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_condattr_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_mutex_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_mutexattr_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_rwlock_t

§

impl UnwindSafe for devela::_dep::sdl2::libc::pthread_rwlockattr_t

§

impl UnwindSafe for ptp_clock_caps

§

impl UnwindSafe for ptp_clock_time

§

impl UnwindSafe for ptp_extts_event

§

impl UnwindSafe for ptp_extts_request

§

impl UnwindSafe for ptp_perout_request

§

impl UnwindSafe for ptp_pin_desc

§

impl UnwindSafe for ptp_sys_offset

§

impl UnwindSafe for ptp_sys_offset_extended

§

impl UnwindSafe for ptp_sys_offset_precise

§

impl UnwindSafe for ptrace_peeksiginfo_args

§

impl UnwindSafe for ptrace_rseq_configuration

§

impl UnwindSafe for ptrace_sud_config

§

impl UnwindSafe for ptrace_syscall_info

§

impl UnwindSafe for regex_t

§

impl UnwindSafe for regmatch_t

§

impl UnwindSafe for rlimit64

§

impl UnwindSafe for rlimit

§

impl UnwindSafe for rtentry

§

impl UnwindSafe for rusage

§

impl UnwindSafe for sched_attr

§

impl UnwindSafe for sched_param

§

impl UnwindSafe for sctp_authinfo

§

impl UnwindSafe for sctp_initmsg

§

impl UnwindSafe for sctp_nxtinfo

§

impl UnwindSafe for sctp_prinfo

§

impl UnwindSafe for sctp_rcvinfo

§

impl UnwindSafe for sctp_sndinfo

§

impl UnwindSafe for sctp_sndrcvinfo

§

impl UnwindSafe for seccomp_data

§

impl UnwindSafe for seccomp_notif

§

impl UnwindSafe for seccomp_notif_addfd

§

impl UnwindSafe for seccomp_notif_resp

§

impl UnwindSafe for seccomp_notif_sizes

§

impl UnwindSafe for sem_t

§

impl UnwindSafe for sembuf

§

impl UnwindSafe for semid_ds

§

impl UnwindSafe for seminfo

§

impl UnwindSafe for servent

§

impl UnwindSafe for shmid_ds

§

impl UnwindSafe for sigaction

§

impl UnwindSafe for sigevent

§

impl UnwindSafe for siginfo_t

§

impl UnwindSafe for signalfd_siginfo

§

impl UnwindSafe for sigset_t

§

impl UnwindSafe for sigval

§

impl UnwindSafe for sock_extended_err

§

impl UnwindSafe for sock_filter

§

impl UnwindSafe for sock_fprog

§

impl UnwindSafe for sock_txtime

§

impl UnwindSafe for sockaddr

§

impl UnwindSafe for sockaddr_alg

§

impl UnwindSafe for sockaddr_can

§

impl UnwindSafe for sockaddr_in6

§

impl UnwindSafe for sockaddr_in

§

impl UnwindSafe for sockaddr_ll

§

impl UnwindSafe for sockaddr_nl

§

impl UnwindSafe for sockaddr_pkt

§

impl UnwindSafe for sockaddr_storage

§

impl UnwindSafe for sockaddr_un

§

impl UnwindSafe for sockaddr_vm

§

impl UnwindSafe for sockaddr_xdp

§

impl UnwindSafe for spwd

§

impl UnwindSafe for stack_t

§

impl UnwindSafe for stat64

§

impl UnwindSafe for devela::_dep::sdl2::libc::stat

§

impl UnwindSafe for statfs64

§

impl UnwindSafe for statfs

§

impl UnwindSafe for statvfs64

§

impl UnwindSafe for statvfs

§

impl UnwindSafe for statx

§

impl UnwindSafe for statx_timestamp

§

impl UnwindSafe for sysinfo

§

impl UnwindSafe for tcp_info

§

impl UnwindSafe for termios2

§

impl UnwindSafe for termios

§

impl UnwindSafe for devela::_dep::sdl2::libc::timespec

§

impl UnwindSafe for devela::_dep::sdl2::libc::timeval

§

impl UnwindSafe for timex

§

impl UnwindSafe for tls12_crypto_info_aes_ccm_128

§

impl UnwindSafe for tls12_crypto_info_aes_gcm_128

§

impl UnwindSafe for tls12_crypto_info_aes_gcm_256

§

impl UnwindSafe for tls12_crypto_info_aria_gcm_128

§

impl UnwindSafe for tls12_crypto_info_aria_gcm_256

§

impl UnwindSafe for tls12_crypto_info_chacha20_poly1305

§

impl UnwindSafe for tls12_crypto_info_sm4_ccm

§

impl UnwindSafe for tls12_crypto_info_sm4_gcm

§

impl UnwindSafe for tls_crypto_info

§

impl UnwindSafe for devela::_dep::sdl2::libc::tm

§

impl UnwindSafe for tms

§

impl UnwindSafe for tpacket2_hdr

§

impl UnwindSafe for tpacket3_hdr

§

impl UnwindSafe for tpacket_auxdata

§

impl UnwindSafe for tpacket_bd_ts

§

impl UnwindSafe for tpacket_block_desc

§

impl UnwindSafe for tpacket_hdr

§

impl UnwindSafe for tpacket_hdr_v1

§

impl UnwindSafe for tpacket_hdr_variant1

§

impl UnwindSafe for tpacket_req3

§

impl UnwindSafe for tpacket_req

§

impl UnwindSafe for tpacket_rollover_stats

§

impl UnwindSafe for tpacket_stats

§

impl UnwindSafe for tpacket_stats_v3

§

impl UnwindSafe for ucontext_t

§

impl UnwindSafe for ucred

§

impl UnwindSafe for uinput_abs_setup

§

impl UnwindSafe for uinput_ff_erase

§

impl UnwindSafe for uinput_ff_upload

§

impl UnwindSafe for uinput_setup

§

impl UnwindSafe for uinput_user_dev

§

impl UnwindSafe for user

§

impl UnwindSafe for user_fpregs_struct

§

impl UnwindSafe for user_regs_struct

§

impl UnwindSafe for utimbuf

§

impl UnwindSafe for utmpx

§

impl UnwindSafe for utsname

§

impl UnwindSafe for winsize

§

impl UnwindSafe for xdp_desc

§

impl UnwindSafe for xdp_mmap_offsets

§

impl UnwindSafe for xdp_mmap_offsets_v1

§

impl UnwindSafe for xdp_options

§

impl UnwindSafe for xdp_ring_offset

§

impl UnwindSafe for xdp_ring_offset_v1

§

impl UnwindSafe for xdp_statistics

§

impl UnwindSafe for xdp_statistics_v1

§

impl UnwindSafe for xdp_umem_reg

§

impl UnwindSafe for xdp_umem_reg_v1

§

impl UnwindSafe for xsk_tx_metadata

§

impl UnwindSafe for xsk_tx_metadata_completion

§

impl UnwindSafe for xsk_tx_metadata_request

§

impl UnwindSafe for Locale

§

impl UnwindSafe for LocaleIterator

§

impl UnwindSafe for MessageBoxButtonFlag

§

impl UnwindSafe for MessageBoxColorScheme

§

impl UnwindSafe for MessageBoxFlag

§

impl UnwindSafe for AllowChangeFlag

§

impl UnwindSafe for devela::_dep::sdl2::mixer::Channel

§

impl UnwindSafe for devela::_dep::sdl2::mixer::Chunk

§

impl UnwindSafe for devela::_dep::sdl2::mixer::Group

§

impl UnwindSafe for devela::_dep::sdl2::mixer::InitFlag

§

impl UnwindSafe for Sdl2MixerContext

§

impl UnwindSafe for devela::_dep::sdl2::mouse::Cursor

§

impl UnwindSafe for MouseState

§

impl UnwindSafe for MouseUtil

§

impl UnwindSafe for RelativeMouseState

§

impl UnwindSafe for devela::_dep::sdl2::pixels::Color

§

impl UnwindSafe for Palette

§

impl UnwindSafe for devela::_dep::sdl2::pixels::PixelFormat

§

impl UnwindSafe for PixelMasks

§

impl UnwindSafe for FPoint

§

impl UnwindSafe for FRect

§

impl UnwindSafe for devela::_dep::sdl2::rect::Point

§

impl UnwindSafe for devela::_dep::sdl2::rect::Rect

§

impl UnwindSafe for CanvasBuilder

§

impl UnwindSafe for devela::_dep::sdl2::render::DriverIterator

§

impl UnwindSafe for RendererInfo

§

impl UnwindSafe for SdlError

§

impl UnwindSafe for TextureQuery

§

impl UnwindSafe for Vertex

§

impl UnwindSafe for AudioSubsystem

§

impl UnwindSafe for EventPump

§

impl UnwindSafe for EventSubsystem

§

impl UnwindSafe for GameControllerSubsystem

§

impl UnwindSafe for HapticSubsystem

§

impl UnwindSafe for JoystickSubsystem

§

impl UnwindSafe for Sdl

§

impl UnwindSafe for SensorSubsystem

§

impl UnwindSafe for TimerSubsystem

§

impl UnwindSafe for VideoSubsystem

§

impl UnwindSafe for SurfaceRef

§

impl UnwindSafe for FPSmanager

§

impl UnwindSafe for Mix_Chunk

§

impl UnwindSafe for _Mix_Music

§

impl UnwindSafe for devela::_dep::sdl2::sys::Depth

§

impl UnwindSafe for SDL_AssertData

§

impl UnwindSafe for SDL_AudioCVT

§

impl UnwindSafe for SDL_AudioDeviceEvent

§

impl UnwindSafe for SDL_AudioSpec

§

impl UnwindSafe for SDL_BlitMap

§

impl UnwindSafe for SDL_Color

§

impl UnwindSafe for SDL_CommonEvent

§

impl UnwindSafe for SDL_ControllerAxisEvent

§

impl UnwindSafe for SDL_ControllerButtonEvent

§

impl UnwindSafe for SDL_ControllerDeviceEvent

§

impl UnwindSafe for SDL_ControllerSensorEvent

§

impl UnwindSafe for SDL_ControllerTouchpadEvent

§

impl UnwindSafe for SDL_Cursor

§

impl UnwindSafe for SDL_DisplayEvent

§

impl UnwindSafe for SDL_DisplayMode

§

impl UnwindSafe for SDL_DollarGestureEvent

§

impl UnwindSafe for SDL_DropEvent

§

impl UnwindSafe for SDL_FPoint

§

impl UnwindSafe for SDL_FRect

§

impl UnwindSafe for SDL_Finger

§

impl UnwindSafe for SDL_GUID

§

impl UnwindSafe for SDL_GameControllerButtonBind

§

impl UnwindSafe for SDL_GameControllerButtonBind__bindgen_ty_1__bindgen_ty_1

§

impl UnwindSafe for SDL_HapticCondition

§

impl UnwindSafe for SDL_HapticConstant

§

impl UnwindSafe for SDL_HapticCustom

§

impl UnwindSafe for SDL_HapticDirection

§

impl UnwindSafe for SDL_HapticLeftRight

§

impl UnwindSafe for SDL_HapticPeriodic

§

impl UnwindSafe for SDL_HapticRamp

§

impl UnwindSafe for SDL_JoyAxisEvent

§

impl UnwindSafe for SDL_JoyBallEvent

§

impl UnwindSafe for SDL_JoyBatteryEvent

§

impl UnwindSafe for SDL_JoyButtonEvent

§

impl UnwindSafe for SDL_JoyDeviceEvent

§

impl UnwindSafe for SDL_JoyHatEvent

§

impl UnwindSafe for SDL_KeyboardEvent

§

impl UnwindSafe for SDL_Keysym

§

impl UnwindSafe for SDL_Locale

§

impl UnwindSafe for SDL_MessageBoxButtonData

§

impl UnwindSafe for SDL_MessageBoxColor

§

impl UnwindSafe for SDL_MessageBoxColorScheme

§

impl UnwindSafe for SDL_MessageBoxData

§

impl UnwindSafe for SDL_MouseButtonEvent

§

impl UnwindSafe for SDL_MouseMotionEvent

§

impl UnwindSafe for SDL_MouseWheelEvent

§

impl UnwindSafe for SDL_MultiGestureEvent

§

impl UnwindSafe for SDL_OSEvent

§

impl UnwindSafe for SDL_Palette

§

impl UnwindSafe for SDL_PixelFormat

§

impl UnwindSafe for SDL_Point

§

impl UnwindSafe for SDL_QuitEvent

§

impl UnwindSafe for SDL_RWops

§

impl UnwindSafe for SDL_RWops__bindgen_ty_1__bindgen_ty_1

§

impl UnwindSafe for SDL_RWops__bindgen_ty_1__bindgen_ty_2

§

impl UnwindSafe for SDL_Rect

§

impl UnwindSafe for SDL_Renderer

§

impl UnwindSafe for SDL_RendererInfo

§

impl UnwindSafe for SDL_SensorEvent

§

impl UnwindSafe for SDL_Surface

§

impl UnwindSafe for SDL_SysWMEvent

§

impl UnwindSafe for SDL_SysWMinfo

§

impl UnwindSafe for SDL_SysWMinfo__bindgen_ty_1__bindgen_ty_1

§

impl UnwindSafe for SDL_SysWMinfo__bindgen_ty_1__bindgen_ty_2

§

impl UnwindSafe for SDL_SysWMmsg

§

impl UnwindSafe for SDL_SysWMmsg__bindgen_ty_1__bindgen_ty_1

§

impl UnwindSafe for SDL_TextEditingEvent

§

impl UnwindSafe for SDL_TextEditingExtEvent

§

impl UnwindSafe for SDL_TextInputEvent

§

impl UnwindSafe for SDL_Texture

§

impl UnwindSafe for SDL_Thread

§

impl UnwindSafe for SDL_TouchFingerEvent

§

impl UnwindSafe for SDL_UserEvent

§

impl UnwindSafe for SDL_Vertex

§

impl UnwindSafe for SDL_VirtualJoystickDesc

§

impl UnwindSafe for SDL_Window

§

impl UnwindSafe for SDL_WindowEvent

§

impl UnwindSafe for SDL_WindowShapeMode

§

impl UnwindSafe for SDL_atomic_t

§

impl UnwindSafe for SDL_cond

§

impl UnwindSafe for SDL_hid_device_

§

impl UnwindSafe for SDL_hid_device_info

§

impl UnwindSafe for SDL_mutex

§

impl UnwindSafe for SDL_semaphore

§

impl UnwindSafe for SDL_version

§

impl UnwindSafe for devela::_dep::sdl2::sys::Screen

§

impl UnwindSafe for devela::_dep::sdl2::sys::ScreenFormat

§

impl UnwindSafe for devela::_dep::sdl2::sys::Visual

§

impl UnwindSafe for VkInstance_T

§

impl UnwindSafe for VkSurfaceKHR_T

§

impl UnwindSafe for devela::_dep::sdl2::sys::XAnyEvent

§

impl UnwindSafe for XArc

§

impl UnwindSafe for devela::_dep::sdl2::sys::XButtonEvent

§

impl UnwindSafe for XChar2b

§

impl UnwindSafe for XCharStruct

§

impl UnwindSafe for devela::_dep::sdl2::sys::XCirculateEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XCirculateRequestEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XClientMessageEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XColor

§

impl UnwindSafe for devela::_dep::sdl2::sys::XColormapEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XConfigureEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XConfigureRequestEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XCreateWindowEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XCrossingEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XDestroyWindowEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XErrorEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XExposeEvent

§

impl UnwindSafe for XExtCodes

§

impl UnwindSafe for devela::_dep::sdl2::sys::XFocusChangeEvent

§

impl UnwindSafe for XFontProp

§

impl UnwindSafe for XFontSetExtents

§

impl UnwindSafe for XFontStruct

§

impl UnwindSafe for XGCValues

§

impl UnwindSafe for devela::_dep::sdl2::sys::XGenericEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XGenericEventCookie

§

impl UnwindSafe for devela::_dep::sdl2::sys::XGraphicsExposeEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XGravityEvent

§

impl UnwindSafe for XHostAddress

§

impl UnwindSafe for XICCallback

§

impl UnwindSafe for XIMCallback

§

impl UnwindSafe for XIMStyles

§

impl UnwindSafe for XIMValuesList

§

impl UnwindSafe for devela::_dep::sdl2::sys::XKeyEvent

§

impl UnwindSafe for XKeyboardControl

§

impl UnwindSafe for XKeyboardState

§

impl UnwindSafe for devela::_dep::sdl2::sys::XKeymapEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XMapEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XMapRequestEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XMappingEvent

§

impl UnwindSafe for XModifierKeymap

§

impl UnwindSafe for devela::_dep::sdl2::sys::XMotionEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XNoExposeEvent

§

impl UnwindSafe for XOMCharSetList

§

impl UnwindSafe for XOMFontInfo

§

impl UnwindSafe for XOMOrientation

§

impl UnwindSafe for XPixmapFormatValues

§

impl UnwindSafe for XPoint

§

impl UnwindSafe for devela::_dep::sdl2::sys::XPropertyEvent

§

impl UnwindSafe for XRectangle

§

impl UnwindSafe for devela::_dep::sdl2::sys::XReparentEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XResizeRequestEvent

§

impl UnwindSafe for XSegment

§

impl UnwindSafe for devela::_dep::sdl2::sys::XSelectionClearEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XSelectionEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XSelectionRequestEvent

§

impl UnwindSafe for XServerInterpretedAddress

§

impl UnwindSafe for devela::_dep::sdl2::sys::XSetWindowAttributes

§

impl UnwindSafe for XTextItem16

§

impl UnwindSafe for XTextItem

§

impl UnwindSafe for XTimeCoord

§

impl UnwindSafe for devela::_dep::sdl2::sys::XUnmapEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XVisibilityEvent

§

impl UnwindSafe for devela::_dep::sdl2::sys::XWindowAttributes

§

impl UnwindSafe for XWindowChanges

§

impl UnwindSafe for XmbTextItem

§

impl UnwindSafe for XwcTextItem

§

impl UnwindSafe for _SDL_AudioStream

§

impl UnwindSafe for _SDL_GameController

§

impl UnwindSafe for _SDL_Haptic

§

impl UnwindSafe for _SDL_Joystick

§

impl UnwindSafe for _SDL_Sensor

§

impl UnwindSafe for _SDL_iconv_t

§

impl UnwindSafe for _XDisplay

§

impl UnwindSafe for devela::_dep::sdl2::sys::_XExtData

§

impl UnwindSafe for _XGC

§

impl UnwindSafe for _XIC

§

impl UnwindSafe for _XIM

§

impl UnwindSafe for _XIMHotKeyTrigger

§

impl UnwindSafe for _XIMHotKeyTriggers

§

impl UnwindSafe for _XIMPreeditCaretCallbackStruct

§

impl UnwindSafe for _XIMPreeditDrawCallbackStruct

§

impl UnwindSafe for _XIMPreeditStateNotifyCallbackStruct

§

impl UnwindSafe for _XIMStatusDrawCallbackStruct

§

impl UnwindSafe for _XIMStringConversionCallbackStruct

§

impl UnwindSafe for _XIMStringConversionText

§

impl UnwindSafe for _XIMText

§

impl UnwindSafe for _XImage

§

impl UnwindSafe for _XImage_funcs

§

impl UnwindSafe for _XOC

§

impl UnwindSafe for _XOM

§

impl UnwindSafe for _XPrivate

§

impl UnwindSafe for _XrmHashBucketRec

§

impl UnwindSafe for __BindgenFloat16

§

impl UnwindSafe for __atomic_wide_counter__bindgen_ty_1

§

impl UnwindSafe for __fsid_t

§

impl UnwindSafe for __once_flag

§

impl UnwindSafe for __pthread_cond_s

§

impl UnwindSafe for __pthread_internal_list

§

impl UnwindSafe for __pthread_internal_slist

§

impl UnwindSafe for __pthread_mutex_s

§

impl UnwindSafe for __pthread_rwlock_arch_t

§

impl UnwindSafe for __sigset_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::__va_list_tag

§

impl UnwindSafe for _bindgen_ty_1

§

impl UnwindSafe for div_t

§

impl UnwindSafe for drand48_data

§

impl UnwindSafe for devela::_dep::sdl2::sys::fd_set

§

impl UnwindSafe for ldiv_t

§

impl UnwindSafe for lldiv_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::max_align_t

§

impl UnwindSafe for random_data

§

impl UnwindSafe for devela::_dep::sdl2::sys::timespec

§

impl UnwindSafe for devela::_dep::sdl2::sys::timeval

§

impl UnwindSafe for wl_display

§

impl UnwindSafe for wl_egl_window

§

impl UnwindSafe for wl_surface

§

impl UnwindSafe for xdg_popup

§

impl UnwindSafe for xdg_positioner

§

impl UnwindSafe for xdg_surface

§

impl UnwindSafe for xdg_toplevel

§

impl UnwindSafe for _TTF_Font

§

impl UnwindSafe for FontStyle

§

impl UnwindSafe for GlyphMetrics

§

impl UnwindSafe for Sdl2TtfContext

§

impl UnwindSafe for devela::_dep::sdl2::version::Version

§

impl UnwindSafe for ContextFlags

§

impl UnwindSafe for DisplayMode

§

impl UnwindSafe for devela::_dep::sdl2::video::DriverIterator

§

impl UnwindSafe for GLContext

§

impl UnwindSafe for Window

§

impl UnwindSafe for WindowBuilder

§

impl UnwindSafe for WindowContext

§

impl UnwindSafe for IgnoredAny

§

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

§

impl UnwindSafe for devela::_dep::simdutf8::basic::Utf8Error

§

impl UnwindSafe for devela::_dep::simdutf8::compat::Utf8Error

§

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 devela::_dep::symphonia::core::codecs::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 devela::_dep::symphonia::core::formats::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 devela::_dep::symphonia::core::meta::Visual

§

impl UnwindSafe for devela::_dep::symphonia::core::probe::Descriptor

§

impl UnwindSafe for devela::_dep::symphonia::core::probe::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 Gid

§

impl UnwindSafe for devela::_dep::sysinfo::Group

§

impl UnwindSafe for devela::_dep::sysinfo::Groups

§

impl UnwindSafe for IpNetwork

§

impl UnwindSafe for LoadAvg

§

impl UnwindSafe for MacAddr

§

impl UnwindSafe for MemoryRefreshKind

§

impl UnwindSafe for Motherboard

§

impl UnwindSafe for NetworkData

§

impl UnwindSafe for Networks

§

impl UnwindSafe for Pid

§

impl UnwindSafe for Process

§

impl UnwindSafe for ProcessRefreshKind

§

impl UnwindSafe for devela::_dep::sysinfo::Product

§

impl UnwindSafe for RefreshKind

§

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

§

impl UnwindSafe for Uid

§

impl UnwindSafe for User

§

impl UnwindSafe for Users

§

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 devela::_dep::tokio::io::Stderr

§

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

§

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

§

impl UnwindSafe for devela::_dep::tokio::process::ChildStderr

§

impl UnwindSafe for devela::_dep::tokio::process::ChildStdin

§

impl UnwindSafe for devela::_dep::tokio::process::ChildStdout

§

impl UnwindSafe for RuntimeMetrics

§

impl UnwindSafe for TryCurrentError

§

impl UnwindSafe for devela::_dep::tokio::sync::oneshot::error::RecvError

§

impl UnwindSafe for AcquireError

§

impl UnwindSafe for devela::_dep::tokio::sync::Barrier

§

impl UnwindSafe for devela::_dep::tokio::sync::BarrierWaitResult

§

impl UnwindSafe for OwnedSemaphorePermit

§

impl UnwindSafe for Semaphore

§

impl UnwindSafe for devela::_dep::tokio::sync::TryLockError

§

impl UnwindSafe for devela::_dep::tokio::sync::watch::error::RecvError

§

impl UnwindSafe for RestoreOnPending

§

impl UnwindSafe for devela::_dep::tokio::task::Id

§

impl UnwindSafe for devela::_dep::toml_edit::de::Error

§

impl UnwindSafe for ValueDeserializer

§

impl UnwindSafe for ValueSerializer

§

impl UnwindSafe for devela::_dep::toml_edit::Array

§

impl UnwindSafe for ArrayOfTables

§

impl UnwindSafe for devela::_dep::toml_edit::Date

§

impl UnwindSafe for Datetime

§

impl UnwindSafe for DatetimeParseError

§

impl UnwindSafe for Decor

§

impl UnwindSafe for DocumentMut

§

impl UnwindSafe for InlineTable

§

impl UnwindSafe for devela::_dep::toml_edit::Key

§

impl UnwindSafe for RawString

§

impl UnwindSafe for Repr

§

impl UnwindSafe for Table

§

impl UnwindSafe for devela::_dep::toml_edit::Time

§

impl UnwindSafe for TomlError

§

impl UnwindSafe for GraphemeCursor

§

impl UnwindSafe for Timeouts

§

impl UnwindSafe for InvalidHeaderName

§

impl UnwindSafe for InvalidHeaderValue

§

impl UnwindSafe for MaxSizeReached

§

impl UnwindSafe for ToStrError

§

impl UnwindSafe for InvalidMethod

§

impl UnwindSafe for InvalidStatusCode

§

impl UnwindSafe for devela::_dep::ureq::http::Error

§

impl UnwindSafe for HeaderName

§

impl UnwindSafe for HeaderValue

§

impl UnwindSafe for Method

§

impl UnwindSafe for StatusCode

§

impl UnwindSafe for Uri

§

impl UnwindSafe for devela::_dep::ureq::http::Version

§

impl UnwindSafe for Authority

§

impl UnwindSafe for devela::_dep::ureq::http::uri::Builder

§

impl UnwindSafe for InvalidUri

§

impl UnwindSafe for InvalidUriParts

§

impl UnwindSafe for devela::_dep::ureq::http::uri::Parts

§

impl UnwindSafe for PathAndQuery

§

impl UnwindSafe for Scheme

§

impl UnwindSafe for BodyBuilder

§

impl UnwindSafe for Proxy

§

impl UnwindSafe for ProxyBuilder

§

impl UnwindSafe for WithBody

§

impl UnwindSafe for WithoutBody

§

impl UnwindSafe for DefaultResolver

§

impl UnwindSafe for ConnectProxyConnector

§

impl UnwindSafe for LazyBuffers

§

impl UnwindSafe for NextTimeout

§

impl UnwindSafe for TcpConnector

§

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 u8x32

§

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 EmptyError

§

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

§

impl UnwindSafe for BStr

§

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

§

impl UnwindSafe for ExampleBitfield

§

impl UnwindSafe for ExampleBitfieldCustom

§

impl UnwindSafe for ExampleBitfieldExtra

§

impl UnwindSafe for ExampleEnumSet

§

impl UnwindSafe for ExampleIdSeqUsize

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for Char

§

impl UnwindSafe for GraphemeString

§

impl UnwindSafe for InvalidChar

§

impl UnwindSafe for InvalidUtf8

§

impl UnwindSafe for char7

§

impl UnwindSafe for char8

§

impl UnwindSafe for char16

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for Alloc

§

impl UnwindSafe for Ansi

§

impl UnwindSafe for AnsiColor8b

§

impl UnwindSafe for AppApple

§

impl UnwindSafe for AppConfig

§

impl UnwindSafe for AppUnix

§

impl UnwindSafe for AppWindows

§

impl UnwindSafe for AppXdg

§

impl UnwindSafe for Arch

§

impl UnwindSafe for devela::all::AtomicBool

§

impl UnwindSafe for AtomicF32

§

impl UnwindSafe for AtomicF64

§

impl UnwindSafe for devela::all::AtomicI8

§

impl UnwindSafe for devela::all::AtomicI16

§

impl UnwindSafe for devela::all::AtomicI32

§

impl UnwindSafe for devela::all::AtomicI64

§

impl UnwindSafe for AtomicI128

§

impl UnwindSafe for devela::all::AtomicIsize

§

impl UnwindSafe for devela::all::AtomicU8

§

impl UnwindSafe for devela::all::AtomicU16

§

impl UnwindSafe for devela::all::AtomicU32

§

impl UnwindSafe for devela::all::AtomicU64

§

impl UnwindSafe for AtomicU128

§

impl UnwindSafe for devela::all::AtomicUsize

§

impl UnwindSafe for Backtrace

§

impl UnwindSafe for devela::all::Barrier

§

impl UnwindSafe for devela::all::BarrierWaitResult

§

impl UnwindSafe for Boxed

§

impl UnwindSafe for BumpAlloc

§

impl UnwindSafe for ByteSearch

§

impl UnwindSafe for CStr

§

impl UnwindSafe for CString

§

impl UnwindSafe for CodecFlags

§

impl UnwindSafe for CodecLen

§

impl UnwindSafe for Crockford

§

impl UnwindSafe for CrosstermService

§

impl UnwindSafe for DataOverflow

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for DirEntry

§

impl UnwindSafe for devela::all::Duration

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for ElementNotFound

§

impl UnwindSafe for Env

§

impl UnwindSafe for EventKey

§

impl UnwindSafe for EventKeyFfi

§

impl UnwindSafe for EventMouse

§

impl UnwindSafe for EventPointer

§

impl UnwindSafe for EventTimestamp

§

impl UnwindSafe for EventWheel

§

impl UnwindSafe for FailedErrorConversion

§

impl UnwindSafe for devela::all::False

§

impl UnwindSafe for FatPtr

§

impl UnwindSafe for File

§

impl UnwindSafe for devela::all::FileMetadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for FileType

§

impl UnwindSafe for Fmt

§

impl UnwindSafe for devela::all::FmtError

§

impl UnwindSafe for Fs

§

impl UnwindSafe for FsPath

§

impl UnwindSafe for HasherPengy

§

impl UnwindSafe for IdPinBox

§

impl UnwindSafe for IndexOutOfBounds

§

impl UnwindSafe for InvalidAxisLength

§

impl UnwindSafe for Io

§

impl UnwindSafe for devela::all::IoEmpty

§

impl UnwindSafe for devela::all::IoRepeat

§

impl UnwindSafe for devela::all::IoSink

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for devela::all::Iter

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for ReadDir

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Js

§

impl UnwindSafe for JsConsole

§

impl UnwindSafe for JsInstant

§

impl UnwindSafe for JsTextMetrics

§

impl UnwindSafe for JsTextMetricsFull

§

impl UnwindSafe for JsTimeout

§

impl UnwindSafe for KeyAlreadyExists

§

impl UnwindSafe for devela::all::KeyMods

§

impl UnwindSafe for LINUX_ERRNO

§

impl UnwindSafe for LINUX_EXIT

§

impl UnwindSafe for LINUX_FILENO

§

impl UnwindSafe for LINUX_F_CMD

§

impl UnwindSafe for LINUX_IOCTL

§

impl UnwindSafe for LINUX_O_FLAGS

§

impl UnwindSafe for LINUX_SEEK

§

impl UnwindSafe for LINUX_SIGACTION

§

impl UnwindSafe for LINUX_SIGNAL

§

impl UnwindSafe for LINUX_S_IFMT

§

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 Lgc16

§

impl UnwindSafe for Linux

§

impl UnwindSafe for LinuxSigaction

§

impl UnwindSafe for LinuxSiginfo

§

impl UnwindSafe for LinuxSigset

§

impl UnwindSafe for LinuxStat

§

impl UnwindSafe for LinuxTermios

§

impl UnwindSafe for LinuxTimespec

§

impl UnwindSafe for Log

§

impl UnwindSafe for LogConfig

§

impl UnwindSafe for SetLoggerError

§

impl UnwindSafe for Mem

§

impl UnwindSafe for devela::all::MemLayout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for Conf

§

impl UnwindSafe for Platform

§

impl UnwindSafe for MiniquadWindow

§

impl UnwindSafe for MismatchedCapacity

§

impl UnwindSafe for MismatchedDimensions

§

impl UnwindSafe for MismatchedIndices

§

impl UnwindSafe for Mpsc

§

impl UnwindSafe for devela::all::MpscReceiveError

§

impl UnwindSafe for NodeEmpty

§

impl UnwindSafe for NodeLinkNotSet

§

impl UnwindSafe for NodeLinkNotUnique

§

impl UnwindSafe for NotEnoughElements

§

impl UnwindSafe for NotEnoughSpace

§

impl UnwindSafe for NotImplemented

§

impl UnwindSafe for NotSupported

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for Panic

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for PartiallyAdded

§

impl UnwindSafe for Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Pnm

§

impl UnwindSafe for devela::all::Process

§

impl UnwindSafe for ExitCode

§

impl UnwindSafe for ExitStatus

§

impl UnwindSafe for devela::all::ProcessOutput

§

impl UnwindSafe for devela::all::ProcessStderr

§

impl UnwindSafe for devela::all::ProcessStdin

§

impl UnwindSafe for Stdio

§

impl UnwindSafe for devela::all::ProcessStdout

§

impl UnwindSafe for Ptr

§

impl UnwindSafe for RandomState

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for Rfc4648

§

impl UnwindSafe for Rfc4648Hex

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for devela::all::Stdin

§

impl UnwindSafe for Str

§

impl UnwindSafe for devela::all::String

§

impl UnwindSafe for devela::all::SystemAlloc

§

impl UnwindSafe for devela::all::SystemInstant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for devela::all::SystemTimeError

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for TermSize

§

impl UnwindSafe for Thread

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for devela::all::ThreadBuilder

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for TimeDelta

§

impl UnwindSafe for Timecode

§

impl UnwindSafe for devela::all::Timeout

§

impl UnwindSafe for devela::all::True

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for UdpSocket

§

impl UnwindSafe for UiCap

§

impl UnwindSafe for UiCapImage

§

impl UnwindSafe for UiCapInput

§

impl UnwindSafe for UiCapSound

§

impl UnwindSafe for UiCapSystem

§

impl UnwindSafe for UiCapWindow

§

impl UnwindSafe for UnixTimeI64

§

impl UnwindSafe for UnixTimeU32

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for Wasm

§

impl UnwindSafe for WasmAlloc

§

impl UnwindSafe for WaveletHaar

§

impl UnwindSafe for WaveletUnitVec

§

impl UnwindSafe for Web

§

impl UnwindSafe for WebDocument

§

impl UnwindSafe for WebElement

§

impl UnwindSafe for WebEventMouse

§

impl UnwindSafe for WebEventPointer

§

impl UnwindSafe for WebWindow

§

impl UnwindSafe for WebWindowState

§

impl UnwindSafe for WebWorker

§

impl UnwindSafe for WebWorkerJob

§

impl UnwindSafe for Xabc

§

impl UnwindSafe for XorShift128

§

impl UnwindSafe for XorShift128p

§

impl UnwindSafe for Xoroshiro128pp

§

impl UnwindSafe for Xyza8a

§

impl UnwindSafe for Xyza8b

§

impl UnwindSafe for g_bvec2

§

impl UnwindSafe for g_bvec3

§

impl UnwindSafe for g_bvec4

§

impl UnwindSafe for g_dmat2

§

impl UnwindSafe for g_dmat3

§

impl UnwindSafe for g_dmat4

§

impl UnwindSafe for g_dvec2

§

impl UnwindSafe for g_dvec3

§

impl UnwindSafe for g_dvec4

§

impl UnwindSafe for g_ivec2

§

impl UnwindSafe for g_ivec3

§

impl UnwindSafe for g_ivec4

§

impl UnwindSafe for g_mat2

§

impl UnwindSafe for g_mat2x3

§

impl UnwindSafe for g_mat2x4

§

impl UnwindSafe for g_mat3

§

impl UnwindSafe for g_mat3x2

§

impl UnwindSafe for g_mat3x4

§

impl UnwindSafe for g_mat4

§

impl UnwindSafe for g_mat4x2

§

impl UnwindSafe for g_mat4x3

§

impl UnwindSafe for g_uvec2

§

impl UnwindSafe for g_uvec3

§

impl UnwindSafe for g_uvec4

§

impl UnwindSafe for g_vec2

§

impl UnwindSafe for g_vec3

§

impl UnwindSafe for g_vec4

§

impl UnwindSafe for g_vertex2

§

impl UnwindSafe for g_vertex3

§

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 AVChannelLayout__bindgen_ty_1

§

impl UnwindSafe for AVFilter__bindgen_ty_1

§

impl UnwindSafe for AVOption__bindgen_ty_1

§

impl UnwindSafe for av_intfloat32

§

impl UnwindSafe for av_intfloat64

§

impl UnwindSafe for ClientMessageData

§

impl UnwindSafe for devela::_dep::miniquad::native::linux_x11::libx11::_XEvent

§

impl UnwindSafe for PyMethodDefPointer

§

impl UnwindSafe for PyUnicodeObjectData

§

impl UnwindSafe for __c_anonymous_ifc_ifcu

§

impl UnwindSafe for __c_anonymous_ifr_ifru

§

impl UnwindSafe for __c_anonymous_iwreq

§

impl UnwindSafe for __c_anonymous_ptp_perout_request_1

§

impl UnwindSafe for __c_anonymous_ptp_perout_request_2

§

impl UnwindSafe for __c_anonymous_ptrace_syscall_info_data

§

impl UnwindSafe for __c_anonymous_sockaddr_can_can_addr

§

impl UnwindSafe for __c_anonymous_xsk_tx_metadata_union

§

impl UnwindSafe for iwreq_data

§

impl UnwindSafe for tpacket_bd_header_u

§

impl UnwindSafe for tpacket_req_u

§

impl UnwindSafe for SDL_Event

§

impl UnwindSafe for SDL_GameControllerButtonBind__bindgen_ty_1

§

impl UnwindSafe for SDL_HapticEffect

§

impl UnwindSafe for SDL_RWops__bindgen_ty_1

§

impl UnwindSafe for SDL_SysWMinfo__bindgen_ty_1

§

impl UnwindSafe for SDL_SysWMmsg__bindgen_ty_1

§

impl UnwindSafe for SDL_WindowShapeParams

§

impl UnwindSafe for XClientMessageEvent__bindgen_ty_1

§

impl UnwindSafe for XEDataObject

§

impl UnwindSafe for devela::_dep::sdl2::sys::_XEvent

§

impl UnwindSafe for _XIMStatusDrawCallbackStruct__bindgen_ty_1

§

impl UnwindSafe for _XIMStringConversionText__bindgen_ty_1

§

impl UnwindSafe for _XIMText__bindgen_ty_1

§

impl UnwindSafe for __atomic_wide_counter

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_attr_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_barrier_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_barrierattr_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_cond_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_condattr_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_mutex_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_mutexattr_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_rwlock_t

§

impl UnwindSafe for devela::_dep::sdl2::sys::pthread_rwlockattr_t

§

impl UnwindSafe for DataRaw64Copy

§

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 Context

§

impl UnwindSafe for Decimal

§

impl UnwindSafe for DecimalSeq

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for DictVarkeywords

§

impl UnwindSafe for False

§

impl UnwindSafe for FmtSpec

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for FunctionDescription

§

impl UnwindSafe for GlobalLogger

§

impl UnwindSafe for HashCallbackOutput

§

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 NonZeroCharInner

§

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 PanicTrap

§

impl UnwindSafe for PosixDay

§

impl UnwindSafe for PosixDayTime

§

impl UnwindSafe for PosixOffset

§

impl UnwindSafe for PosixRule

§

impl UnwindSafe for PosixTime

§

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 PyObjectFreeList

§

impl UnwindSafe for PySetterDef

§

impl UnwindSafe for Sign

§

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 TzifDateTime

§

impl UnwindSafe for TzifIndicator

§

impl UnwindSafe for TzifLocalTimeType

§

impl UnwindSafe for TzifTransitionInfo

§

impl UnwindSafe for TzifTransitionKind

§

impl UnwindSafe for U32NotAllOnes

§

impl UnwindSafe for U64NotAllOnes

§

impl UnwindSafe for UsizeNoHighBit

§

impl UnwindSafe for Utf8Encoder

§

impl UnwindSafe for Utf16Encoder

§

impl<'a> !UnwindSafe for devela::_dep::toml_edit::Entry<'a>

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_core::error::Request<'a>

§

impl<'a> !UnwindSafe for devela::_core::error::Source<'a>

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_dep::ffmpeg_the_third::filter::Sink<'a>

§

impl<'a> !UnwindSafe for devela::_dep::ffmpeg_the_third::filter::Source<'a>

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_dep::kira::info::Info<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_dep::toml_edit::OccupiedEntry<'a>

§

impl<'a> !UnwindSafe for devela::_dep::toml_edit::VacantEntry<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::codec::subtitle::Rect<'a>

§

impl<'a> UnwindSafe for RectMut<'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 ClickedButton<'a>

§

impl<'a> UnwindSafe for VertexIndices<'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::all::PathComponent<'a>

§

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

§

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

§

impl<'a> UnwindSafe for PhantomContravariantLifetime<'a>

§

impl<'a> UnwindSafe for PhantomCovariantLifetime<'a>

§

impl<'a> UnwindSafe for PhantomInvariantLifetime<'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 devela::_dep::_alloc::string::Drain<'a>

§

impl<'a> UnwindSafe for devela::_dep::_std::ffi::os_str::Display<'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 devela::_dep::ffmpeg_the_third::codec::codec::ChannelLayoutIter<'a>

§

impl<'a> UnwindSafe for FrameRateIter<'a>

§

impl<'a> UnwindSafe for PixelFormatIter<'a>

§

impl<'a> UnwindSafe for SampleFormatIter<'a>

§

impl<'a> UnwindSafe for SampleRateIter<'a>

§

impl<'a> UnwindSafe for SideDataIter<'a>

§

impl<'a> UnwindSafe for Borrow<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::codec::packet::SideData<'a>

§

impl<'a> UnwindSafe for Ass<'a>

§

impl<'a> UnwindSafe for AssMut<'a>

§

impl<'a> UnwindSafe for Bitmap<'a>

§

impl<'a> UnwindSafe for BitmapMut<'a>

§

impl<'a> UnwindSafe for RectIter<'a>

§

impl<'a> UnwindSafe for RectMutIter<'a>

§

impl<'a> UnwindSafe for Text<'a>

§

impl<'a> UnwindSafe for TextMut<'a>

§

impl<'a> UnwindSafe for DeviceIter<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::device::Info<'a>

§

impl<'a> UnwindSafe for PadIter<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::filter::Context<'a>

§

impl<'a> UnwindSafe for Pad<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::software::scaling::Vector<'a>

§

impl<'a> UnwindSafe for ChannelLayout<'a>

§

impl<'a> UnwindSafe for Chapter<'a>

§

impl<'a> UnwindSafe for Owned<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::DictionaryMut<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::DictionaryRef<'a>

§

impl<'a> UnwindSafe for Stream<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::util::dictionary::Iter<'a>

§

impl<'a> UnwindSafe for devela::_dep::ffmpeg_the_third::util::frame::SideData<'a>

§

impl<'a> UnwindSafe for AxisDataIter<'a>

§

impl<'a> UnwindSafe for ButtonDataIter<'a>

§

impl<'a> UnwindSafe for ConnectedGamepadsIterator<'a>

§

impl<'a> UnwindSafe for Gamepad<'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 devela::_dep::log::MetadataBuilder<'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 EventPollIterator<'a>

§

impl<'a> UnwindSafe for EventWaitIterator<'a>

§

impl<'a> UnwindSafe for EventWaitTimeoutIterator<'a>

§

impl<'a> UnwindSafe for KeyboardState<'a>

§

impl<'a> UnwindSafe for ScancodeIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::messagebox::ButtonData<'a>

§

impl<'a> UnwindSafe for Music<'a>

§

impl<'a> UnwindSafe for MouseButtonIterator<'a>

§

impl<'a> UnwindSafe for RWops<'a>

§

impl<'a> UnwindSafe for Surface<'a>

§

impl<'a> UnwindSafe for SurfaceContext<'a>

§

impl<'a> UnwindSafe for ContextFlagsBuilder<'a>

§

impl<'a> UnwindSafe for GLAttr<'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 SemaphorePermit<'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 devela::text::IterChars<'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 SplitPaths<'a>

§

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

§

impl<'a> UnwindSafe for Record<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for Sixel<'a>

§

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

§

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

§

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

§

impl<'a> UnwindSafe for Best<'a>

§

impl<'a> UnwindSafe for ChapterIter<'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 StreamIter<'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::all::OptionIterMut<'a, A>

§

impl<'a, A> UnwindSafe for devela::all::OptionIter<'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, CB> !UnwindSafe for AudioDeviceLockGuard<'a, CB>

§

impl<'a, CB> UnwindSafe for EventWatch<'a, CB>

§

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> !UnwindSafe for devela::_dep::itertools::Chunk<'a, I>

§

impl<'a, I> !UnwindSafe for devela::_dep::itertools::Chunks<'a, I>

§

impl<'a, I> UnwindSafe for devela::_dep::image::Pixels<'a, I>
where I: RefUnwindSafe + ?Sized,

§

impl<'a, I> UnwindSafe for Format<'a, I>
where I: UnwindSafe,

§

impl<'a, I, A> UnwindSafe for devela::_dep::_alloc::vec::Splice<'a, I, A>

§

impl<'a, I, A> UnwindSafe for devela::_dep::allocator_api2::vec::Splice<'a, I, A>

§

impl<'a, I, E> !UnwindSafe for ProcessResults<'a, I, E>

§

impl<'a, I, F> !UnwindSafe for PeekingTakeWhile<'a, I, F>

§

impl<'a, I, F> !UnwindSafe for TakeWhileRef<'a, I, F>

§

impl<'a, I, F> UnwindSafe for FormatWith<'a, I, F>
where I: UnwindSafe, F: UnwindSafe,

§

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, I, F> !UnwindSafe for devela::_dep::itertools::Group<'a, K, I, F>

§

impl<'a, K, I, F> !UnwindSafe for devela::_dep::itertools::Groups<'a, K, I, F>

§

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, 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::hashbrown::hash_map::ExtractIf<'a, K, V, F, A>

§

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

§

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, A = Global> !UnwindSafe for RawEntryMut<'a, K, V, S, A>

§

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::OccupiedError<'a, K, V, S, A>

§

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

§

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

§

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

§

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

§

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, P> !UnwindSafe for EnumeratePixelsMut<'a, P>

§

impl<'a, P> !UnwindSafe for EnumeratePixelsMutPar<'a, P>

§

impl<'a, P> !UnwindSafe for EnumerateRowsMut<'a, P>

§

impl<'a, P> !UnwindSafe for PixelsMut<'a, P>

§

impl<'a, P> !UnwindSafe for PixelsMutPar<'a, P>

§

impl<'a, P> !UnwindSafe for RowsMut<'a, P>

§

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 EnumeratePixels<'a, P>
where <P as Pixel>::Subpixel: RefUnwindSafe,

§

impl<'a, P> UnwindSafe for EnumeratePixelsPar<'a, P>
where <P as Pixel>::Subpixel: RefUnwindSafe,

§

impl<'a, P> UnwindSafe for EnumerateRows<'a, P>
where <P as Pixel>::Subpixel: RefUnwindSafe,

§

impl<'a, P> UnwindSafe for devela::_dep::image::buffer::Pixels<'a, P>
where <P as Pixel>::Subpixel: RefUnwindSafe,

§

impl<'a, P> UnwindSafe for PixelsPar<'a, P>
where <P as Pixel>::Subpixel: RefUnwindSafe,

§

impl<'a, P> UnwindSafe for Rows<'a, P>
where <P as Pixel>::Subpixel: RefUnwindSafe,

§

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::_dep::ureq::http::header::Entry<'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 devela::_dep::_alloc::vec::PeekMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::_std::sync::nonpoison::MappedMutexGuard<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::_std::sync::nonpoison::MutexGuard<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::_std::sync::MappedMutexGuard<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for devela::_dep::allocator_api2::vec::InPlaceSeed<'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 devela::_dep::tokio::sync::MappedMutexGuard<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::tokio::sync::MutexGuard<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for devela::_dep::tokio::sync::RwLockWriteGuard<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::ureq::http::header::Drain<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::ureq::http::header::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::ureq::http::header::OccupiedEntry<'a, T>

§

impl<'a, T> !UnwindSafe for devela::_dep::ureq::http::header::VacantEntry<'a, T>

§

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

§

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

§

impl<'a, T> !UnwindSafe for devela::_dep::ureq::http::header::ValuesMut<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for devela::all::ResultIterMut<'a, T>

§

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

§

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

§

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 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 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::flume::Drain<'a, T>
where T: UnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::flume::Iter<'a, T>

§

impl<'a, T> UnwindSafe for devela::_dep::flume::TryIter<'a, T>

§

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 Permit<'a, T>

§

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

§

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

§

impl<'a, T> UnwindSafe for devela::_dep::tokio::sync::watch::Ref<'a, T>
where T: RefUnwindSafe,

§

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

§

impl<'a, T> UnwindSafe for devela::_dep::ureq::http::header::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for devela::_dep::ureq::http::header::Keys<'a, T>
where T: RefUnwindSafe,

§

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

§

impl<'a, T> UnwindSafe for devela::_dep::ureq::http::header::Values<'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 devela::all::MpscIter<'a, T>

§

impl<'a, T> UnwindSafe for devela::all::MpscTryIter<'a, T>

§

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

§

impl<'a, T> UnwindSafe for devela::all::ResultIter<'a, T>
where T: RefUnwindSafe,

§

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

§

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

§

impl<'a, T> UnwindSafe for TupleFmt<'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 DrainSorted<'a, T, A>

§

impl<'a, T, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::binary_heap::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 devela::_dep::hashbrown::hash_table::Entry<'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::allocator_api2::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 CoroWork<'a, T, E>

§

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, R, F, A = Global> !UnwindSafe for devela::_dep::_alloc::collections::btree_set::ExtractIf<'a, T, R, F, A>

§

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 ArrayWindows<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, T, const SPIN: usize, const YIELD: usize, const SLEEP: u64> !UnwindSafe for SpinLockGuard<'a, T, SPIN, YIELD, SLEEP>

§

impl<'a, TexCoordVertex> UnwindSafe for RenderGeometryTextureParams<'a, TexCoordVertex>
where TexCoordVertex: RefUnwindSafe,

§

impl<'a, U> UnwindSafe for TextStyle<'a, U>
where U: UnwindSafe,

§

impl<'a, V> !UnwindSafe for StaticMapEntry<'a, V>

§

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 MIN_ALIGN: usize = 1> !UnwindSafe for ChunkIter<'a, MIN_ALIGN>

§

impl<'a, const MIN_ALIGN: usize = 1> !UnwindSafe for ChunkRawIter<'a, MIN_ALIGN>

§

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 RefMut<'b, T>

§

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<'d> UnwindSafe for TimeZoneName<'d>

§

impl<'d> UnwindSafe for TimeZoneNameIter<'d>

§

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 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<'f, 'text> UnwindSafe for PartialRendering<'f, 'text>

§

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

§

impl<'glyphs, T> UnwindSafe for BitmapFont<'glyphs, T>
where T: RefUnwindSafe,

§

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<'k> !UnwindSafe for KeyMut<'k>

§

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 ParametersMut<'p>

§

impl<'p> UnwindSafe for ParametersRef<'p>

§

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

§

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

§

impl<'p, P, I, O, E> !UnwindSafe for ByRef<'p, P, I, O, E>

§

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> UnwindSafe for Texture<'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<'r, R> !UnwindSafe for UnwrapMut<'r, R>

§

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::all::ThreadScope<'scope, 'env>

§

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

§

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

§

impl<'t> UnwindSafe for TimeZoneOffsetInfo<'t>

§

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

§

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

§

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

§

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

§

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<'ttf_module, 'rwops> UnwindSafe for devela::_dep::sdl2::ttf::Font<'ttf_module, 'rwops>

§

impl<A> !UnwindSafe for VecChunk<A>

§

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::_dep::itertools::RepeatN<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> UnwindSafe for devela::all::IterRepeat<A>
where A: UnwindSafe,

§

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

§

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

§

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

§

impl<A, B> UnwindSafe for devela::_dep::ureq::unversioned::transport::Either<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 devela::_dep::rayon::iter::ZipEq<A, B>
where A: UnwindSafe, B: 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, C, D, E, F, G, H> UnwindSafe for Pinned<A, B, C, D, E, F, G, H>

§

impl<ABBREV> UnwindSafe for PosixDst<ABBREV>
where ABBREV: UnwindSafe,

§

impl<ABBREV> UnwindSafe for PosixTimeZone<ABBREV>
where ABBREV: UnwindSafe,

§

impl<Any> !UnwindSafe for RequestScope<Any>

§

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

§

impl<B> !UnwindSafe for AudioManagerSettings<B>

§

impl<B> !UnwindSafe for RequestBuilder<B>

§

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

§

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

§

impl<B> UnwindSafe for devela::all::IoSplit<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<Buffer> UnwindSafe for FlatSamples<Buffer>
where Buffer: UnwindSafe,

§

impl<Buffer, P> UnwindSafe for View<Buffer, P>
where Buffer: UnwindSafe, P: UnwindSafe,

§

impl<Buffer, P> UnwindSafe for ViewMut<Buffer, P>
where Buffer: UnwindSafe, P: UnwindSafe,

§

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

§

impl<C> UnwindSafe for devela::_dep::jiff::fmt::strtime::Config<C>
where C: UnwindSafe,

§

impl<CB> UnwindSafe for AudioDevice<CB>
where CB: UnwindSafe,

§

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

§

impl<ClassT, FieldT, Offset, const IS_PY_T: bool, const IMPLEMENTS_INTOPYOBJECT_REF: bool, const IMPLEMENTS_INTOPYOBJECT: bool> UnwindSafe for PyClassGetterGenerator<ClassT, FieldT, Offset, IS_PY_T, 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 DynMetadata<Dyn>

§

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> UnwindSafe for CodecLe<E>
where E: UnwindSafe,

§

impl<E, CodecEndian> UnwindSafe for CodecLenValue<E, CodecEndian>
where E: UnwindSafe, CodecEndian: UnwindSafe,

§

impl<E, F> UnwindSafe for CodecIf<E, F>
where E: UnwindSafe, F: UnwindSafe,

§

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

§

impl<E, S> UnwindSafe for CodecJoin<E, S>
where E: UnwindSafe, S: 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 FromFactoryIter<F>
where F: UnwindSafe,

§

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

§

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

§

impl<F> UnwindSafe for PollFn<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 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::impls::FlatMap<F, G, H, I, O, O2, E>

§

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

§

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::impls::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 devela::_dep::winnow::combinator::impls::Span<F, I, O, E>

§

impl<F, I, O, E> UnwindSafe for devela::_dep::winnow::combinator::impls::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> UnwindSafe for ParserIterator<F, I, O, E>

§

impl<F, I, O, E, C> UnwindSafe for devela::_dep::winnow::combinator::impls::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::impls::Value<F, I, O, O2, E>

§

impl<F, T> UnwindSafe for 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<G> UnwindSafe for FromCoroutine<G>
where G: 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 I1: UnwindSafe, I2: UnwindSafe,

§

impl<I> !UnwindSafe for RcIter<I>

§

impl<I> !UnwindSafe for Tee<I>

§

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 SubImage<I>
where I: UnwindSafe,

§

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

§

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

§

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

§

impl<I> UnwindSafe for IntoChunks<I>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I> UnwindSafe for devela::_dep::itertools::WhileSome<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for WithPosition<I>
where I: UnwindSafe, <I as Iterator>::Item: 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 devela::_dep::rayon::iter::WhileSome<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for SampleRateConverter<I>
where I: UnwindSafe, <I as Iterator>::Item: 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>

§

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

§

impl<I> UnwindSafe for devela::_dep::rodio::source::Delay<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Distortion<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 devela::_dep::rodio::source::Limit<I>
where I: 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>

§

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: 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 UniformSourceIterator<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> UnwindSafe for devela::all::IterCloned<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for devela::all::IterCycle<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, 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, 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, ElemF> UnwindSafe for devela::_dep::itertools::IntersperseWith<I, ElemF>
where ElemF: UnwindSafe, I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

impl<I, F> UnwindSafe for devela::_dep::itertools::Positions<I, F>
where F: UnwindSafe, I: UnwindSafe,

§

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

§

impl<I, F> UnwindSafe for devela::_dep::itertools::Update<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 devela::_dep::rayon::iter::Update<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for PeriodicAccess<I, F>
where I: UnwindSafe, F: 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, const N: usize> UnwindSafe for MapWindows<I, F, N>
where F: UnwindSafe, I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<I, G> UnwindSafe for devela::_core::iter::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 Diff<I, J>

§

impl<I, J> UnwindSafe for devela::_dep::itertools::Interleave<I, J>
where I: UnwindSafe, J: UnwindSafe,

§

impl<I, J> UnwindSafe for devela::_dep::itertools::InterleaveShortest<I, J>
where I: UnwindSafe, J: UnwindSafe,

§

impl<I, J> UnwindSafe for devela::_dep::itertools::Product<I, J>
where I: UnwindSafe, J: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<I, J> UnwindSafe for devela::_dep::itertools::ZipEq<I, J>
where I: UnwindSafe, J: UnwindSafe,

§

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

§

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

§

impl<I, J, F> UnwindSafe for MergeBy<I, J, F>

§

impl<I, O> UnwindSafe for SampleTypeConverter<I, O>
where I: UnwindSafe, O: 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 devela::_dep::rayon::iter::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> 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, 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> UnwindSafe for CircularTupleWindows<I, T>
where I: UnwindSafe, T: UnwindSafe,

§

impl<I, T> UnwindSafe for TupleCombinations<I, T>
where <T as HasCombination<I>>::Combination: UnwindSafe, I: UnwindSafe,

§

impl<I, T> UnwindSafe for TupleWindows<I, T>
where I: UnwindSafe, T: UnwindSafe,

§

impl<I, T> UnwindSafe for Tuples<I, T>
where <T as TupleCollect>::Buffer: UnwindSafe, I: UnwindSafe,

§

impl<I, T, E> UnwindSafe for FlattenOk<I, T, E>

§

impl<I, T, F> UnwindSafe for MapWith<I, T, F>
where I: UnwindSafe, T: UnwindSafe, F: UnwindSafe,

§

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, F> UnwindSafe for devela::all::IterFlatMap<I, U, F>

§

impl<I, U, ID, F> UnwindSafe for TryFold<I, U, ID, F>

§

impl<I, V, F> UnwindSafe for UniqueBy<I, V, F>
where I: UnwindSafe, F: UnwindSafe, V: UnwindSafe,

§

impl<I, const N: usize> UnwindSafe for 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<In, First, Second> UnwindSafe for ChainedConnector<In, First, Second>
where First: UnwindSafe, Second: UnwindSafe, In: 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, I, F> UnwindSafe for devela::_dep::itertools::ChunkBy<K, I, F>

§

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, 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, S, A> UnwindSafe for devela::all::HashMap<K, V, S, A>

§

impl<K, V, const N: usize> UnwindSafe for ExampleStaticMapU16<K, V, N>
where K: UnwindSafe, V: UnwindSafe,

§

impl<L, R> UnwindSafe for devela::_dep::itertools::Either<L, R>
where L: UnwindSafe, R: UnwindSafe,

§

impl<N, D> UnwindSafe for Ratio<N, D>
where N: UnwindSafe, D: UnwindSafe,

§

impl<N, H> UnwindSafe for Mismatch<N, H>
where N: UnwindSafe, H: UnwindSafe,

§

impl<Ok, Error> UnwindSafe for Impossible<Ok, Error>
where Ok: UnwindSafe, Error: UnwindSafe,

§

impl<P, Container> UnwindSafe for ImageBuffer<P, Container>
where Container: UnwindSafe, P: UnwindSafe,

§

impl<P, I, O, C, E> UnwindSafe for devela::_dep::winnow::combinator::Repeat<P, I, O, C, E>

§

impl<P, I, O, E> UnwindSafe for CompleteErr<P, I, O, E>

§

impl<P, I, O, E, F, C, FI> UnwindSafe for ContextWith<P, I, O, E, F, C, FI>

§

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 ApngDecoder<R>

§

impl<R> !UnwindSafe for PngDecoder<R>

§

impl<R> !UnwindSafe for LoopedDecoder<R>

§

impl<R> !UnwindSafe for devela::_dep::rodio::Decoder<R>

§

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

§

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

§

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

§

impl<R> UnwindSafe for BlockRng64<R>

§

impl<R> UnwindSafe for BlockRng<R>

§

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

§

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 DecoderBuilder<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> UnwindSafe for devela::all::IoBufReader<R>
where R: UnwindSafe + ?Sized,

§

impl<R> UnwindSafe for devela::all::IoBytes<R>
where R: UnwindSafe,

§

impl<R, T> UnwindSafe for StreamingContextConsistencyTester<R, T>
where T: UnwindSafe, 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 HttpCrateScope<S>

§

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

§

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

§

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

§

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

§

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> UnwindSafe for Deserializer<S>
where S: UnwindSafe,

§

impl<S> UnwindSafe for Document<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<STR, ABBREV> UnwindSafe for TzifFixed<STR, ABBREV>
where STR: UnwindSafe, ABBREV: UnwindSafe,

§

impl<STR, ABBREV, TYPES, TIMESTAMPS, STARTS, ENDS, INFOS> UnwindSafe for Tzif<STR, ABBREV, TYPES, TIMESTAMPS, STARTS, ENDS, INFOS>
where TYPES: UnwindSafe, STR: UnwindSafe, TIMESTAMPS: UnwindSafe, STARTS: UnwindSafe, ENDS: UnwindSafe, INFOS: UnwindSafe, ABBREV: UnwindSafe,

§

impl<Scope> UnwindSafe for ConfigBuilder<Scope>
where Scope: UnwindSafe,

§

impl<St, F> UnwindSafe for Iterate<St, F>
where St: UnwindSafe, F: UnwindSafe,

§

impl<St, F> UnwindSafe for Unfold<St, F>
where F: UnwindSafe, St: UnwindSafe,

§

impl<Storage> UnwindSafe for __BindgenBitfieldUnit<Storage>
where Storage: UnwindSafe,

§

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 CommandReader<T>

§

impl<T> !UnwindSafe for CommandWriter<T>

§

impl<T> !UnwindSafe for MidiInputConnection<T>

§

impl<T> !UnwindSafe for devela::_dep::tokio::sync::oneshot::Receiver<T>

§

impl<T> !UnwindSafe for devela::_dep::tokio::sync::oneshot::Sender<T>

§

impl<T> !UnwindSafe for OwnedMutexGuard<T>

§

impl<T> !UnwindSafe for OwnedRwLockWriteGuard<T>

§

impl<T> !UnwindSafe for devela::_dep::ureq::http::Request<T>

§

impl<T> !UnwindSafe for Response<T>

§

impl<T> !UnwindSafe for devela::all::ThreadJoinHandle<T>

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpmc::SendTimeoutError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::flume::SendTimeoutError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::flume::TrySendError<T>
where T: UnwindSafe,

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::kira::Value<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::mpsc::error::TrySendError<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::all::MpscTrySendError<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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 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::nonpoison::Mutex<T>
where T: UnwindSafe + ?Sized,

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::flume::IntoIter<T>

§

impl<T> UnwindSafe for devela::_dep::flume::Receiver<T>

§

impl<T> UnwindSafe for devela::_dep::flume::SendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::flume::Sender<T>

§

impl<T> UnwindSafe for devela::_dep::flume::WeakSender<T>

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::image::Rgb<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::image::Rgba<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for TupleBuffer<T>
where <T as TupleCollect>::Buffer: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::itertools::Zip<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 Canvas<T>

§

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

§

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

§

impl<T> UnwindSafe for ReadHalf<T>

§

impl<T> UnwindSafe for WriteHalf<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::broadcast::error::SendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::broadcast::Receiver<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::broadcast::Sender<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::broadcast::WeakSender<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::mpsc::error::SendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for OwnedPermit<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::mpsc::Receiver<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::mpsc::Sender<T>

§

impl<T> UnwindSafe for UnboundedReceiver<T>

§

impl<T> UnwindSafe for UnboundedSender<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::mpsc::WeakSender<T>

§

impl<T> UnwindSafe for WeakUnboundedSender<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::Mutex<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::OnceCell<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::RwLock<T>
where T: UnwindSafe + ?Sized,

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::watch::error::SendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::watch::Receiver<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::sync::watch::Sender<T>

§

impl<T> UnwindSafe for JoinSet<T>

§

impl<T> UnwindSafe for devela::_dep::tokio::task::LocalKey<T>

§

impl<T> UnwindSafe for devela::_dep::toml_edit::Formatted<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::ureq::http::header::IntoIter<T>

§

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

§

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

§

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

§

impl<T> UnwindSafe for Caseless<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 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 Ascii<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for devela::all::ArcWeak<T>
where T: RefUnwindSafe + ?Sized,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::all::Compare<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for devela::all::Cycle<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Discriminant<T>

§

impl<T> UnwindSafe for Pending<T>

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for Interval<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 MiniquadService<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::all::MpscIntoIter<T>

§

impl<T> UnwindSafe for devela::all::MpscReceiver<T>

§

impl<T> UnwindSafe for devela::all::MpscSendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::all::MpscSender<T>

§

impl<T> UnwindSafe for SyncSender<T>

§

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 PoisonError<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for devela::all::ResultIntoIter<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::all::ThreadLocalKey<T>

§

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 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 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 Display<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for EmptyTupleConverter<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 IsIntoPyObject<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for IsOption<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 LowerHex<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 Sorted<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for SplitAsciiWhitespace<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 Wrapper<T>
where T: UnwindSafe,

§

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

§

impl<T, A = Global> !UnwindSafe for UniqueRc<T, A>

§

impl<T, A = Global> !UnwindSafe for devela::all::RcWeak<T, A>

§

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 UniqueArc<T, A>

§

impl<T, A> UnwindSafe for devela::_dep::_alloc::sync::Weak<T, A>
where A: UnwindSafe, T: RefUnwindSafe + ?Sized,

§

impl<T, A> UnwindSafe for devela::_dep::_alloc::vec::IntoIter<T, A>

§

impl<T, A> UnwindSafe for devela::_dep::allocator_api2::boxed::Box<T, A>

§

impl<T, A> UnwindSafe for devela::_dep::allocator_api2::vec::IntoIter<T, A>

§

impl<T, A> UnwindSafe for devela::_dep::allocator_api2::vec::Vec<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, 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, D> UnwindSafe for Storage<T, D>
where D: UnwindSafe, T: UnwindSafe,

§

impl<T, E> !UnwindSafe for CoroManager<T, E>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T, K, C> UnwindSafe for KemTester<T, K, C>
where T: UnwindSafe, K: UnwindSafe, C: UnwindSafe,

§

impl<T, N> UnwindSafe for CycleCount<T, N>
where N: UnwindSafe, T: UnwindSafe,

§

impl<T, P> UnwindSafe for Split<T, P>
where T: UnwindSafe, P: UnwindSafe,

§

impl<T, P> UnwindSafe for SplitInclusive<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 = T> !UnwindSafe for OwnedMappedMutexGuard<T, U>

§

impl<T, U = T> !UnwindSafe for OwnedRwLockMappedWriteGuard<T, U>

§

impl<T, U = T> !UnwindSafe for OwnedRwLockReadGuard<T, U>

§

impl<T, U> UnwindSafe for ZipLongest<T, U>
where T: UnwindSafe, U: 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, 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 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 devela::all::Array<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 Distance<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for Extent<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for devela::all::Orientation<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for devela::all::Point<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for devela::all::Position<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for devela::all::Region<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for RegionStrided<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize> UnwindSafe for Stride<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 devela::all::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 LINEAR: bool> UnwindSafe for devela::all::Rgb<T, LINEAR>
where T: UnwindSafe,

§

impl<T, const LINEAR: bool, const LIGHTNESS: bool> UnwindSafe for Lum<T, LINEAR, LIGHTNESS>
where T: UnwindSafe,

§

impl<T, const LINEAR: bool, const PREMUL: bool> UnwindSafe for devela::all::Rgba<T, LINEAR, PREMUL>
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::_dep::rayon::array::IntoIter<T, N>
where T: UnwindSafe,

§

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

§

impl<T, const N: usize> UnwindSafe for devela::all::ArrayIntoIter<T, N>
where T: UnwindSafe,

§

impl<T, const R: usize, const C: usize, const LEN: usize, const RMAJ: bool, const MAX_LEN_DET: usize> UnwindSafe for Matrix<T, R, C, LEN, RMAJ, MAX_LEN_DET>
where T: UnwindSafe,

§

impl<T, const SPIN: usize, const YIELD: usize, const SLEEP: u64> UnwindSafe for SpinLock<T, SPIN, YIELD, SLEEP>
where T: UnwindSafe,

§

impl<TIMESTAMPS, STARTS, ENDS, INFOS> UnwindSafe for TzifTransitions<TIMESTAMPS, STARTS, ENDS, INFOS>
where TIMESTAMPS: UnwindSafe, STARTS: UnwindSafe, ENDS: UnwindSafe, INFOS: UnwindSafe,

§

impl<Type> UnwindSafe for Codec<Type>
where Type: UnwindSafe,

§

impl<U> UnwindSafe for GlyphPosition<U>
where U: UnwindSafe,

§

impl<U> UnwindSafe for devela::_dep::fontdue::layout::Layout<U>
where U: UnwindSafe,

§

impl<V> UnwindSafe for DataValue64CopyWith<V>
where V: UnwindSafe,

§

impl<V> UnwindSafe for DataValue64With<V>
where V: UnwindSafe,

§

impl<V, Q> UnwindSafe for ValueQuant<V, Q>
where V: UnwindSafe, Q: UnwindSafe,

§

impl<W> !UnwindSafe for IntoInnerError<W>

§

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

§

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

§

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

§

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

§

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

§

impl<W> UnwindSafe for devela::_dep::tokio::io::BufWriter<W>
where W: UnwindSafe,

§

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

§

impl<W> UnwindSafe for devela::all::IoBufWriter<W>
where W: UnwindSafe + ?Sized,

§

impl<W> UnwindSafe for LineWriter<W>
where W: 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 A: usize, const B: usize, const C: usize> UnwindSafe for XorShift8<A, B, C>

§

impl<const BASIS: usize, const A: usize, const B: usize, const C: usize> UnwindSafe for XorShift16<BASIS, A, B, C>

§

impl<const BASIS: usize, const A: usize, const B: usize, const C: usize> UnwindSafe for XorShift32<BASIS, A, B, C>

§

impl<const BASIS: usize, const A: usize, const B: usize, const C: usize> UnwindSafe for XorShift64<BASIS, A, B, C>

§

impl<const CAP: usize> UnwindSafe for GraphemeNonul<CAP>

§

impl<const CAP: usize> UnwindSafe for GraphemeU8<CAP>

§

impl<const CAP: usize> UnwindSafe for StringNonul<CAP>

§

impl<const CAP: usize> UnwindSafe for StringU8<CAP>

§

impl<const IMPLEMENTS_INTOPYOBJECT_REF: bool, const IMPLEMENTS_INTOPYOBJECT: bool> UnwindSafe for ConvertField<IMPLEMENTS_INTOPYOBJECT_REF, IMPLEMENTS_INTOPYOBJECT>

§

impl<const LEN: usize, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11> UnwindSafe for Oneof<LEN, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

§

impl<const MIN_ALIGN: usize = 1> !UnwindSafe for Bump<MIN_ALIGN>

§

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

§

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

§

impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> UnwindSafe for Base<RADIX, LUT, PAD, CASE, CODE>
where CODE: UnwindSafe,

§

impl<const V: i8> UnwindSafe for NonValueI8<V>

§

impl<const V: i16> UnwindSafe for NonValueI16<V>

§

impl<const V: i32> UnwindSafe for NonValueI32<V>

§

impl<const V: i64> UnwindSafe for NonValueI64<V>

§

impl<const V: i128> UnwindSafe for NonValueI128<V>

§

impl<const V: isize> UnwindSafe for NonValueIsize<V>

§

impl<const V: u8> UnwindSafe for NonValueU8<V>

§

impl<const V: u16> UnwindSafe for NonValueU16<V>

§

impl<const V: u32> UnwindSafe for NonValueU32<V>

§

impl<const V: u64> UnwindSafe for NonValueU64<V>

§

impl<const V: u128> UnwindSafe for NonValueU128<V>

§

impl<const V: usize> UnwindSafe for NonValueUsize<V>