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

§

impl<T> UnwindSafe for Sender<T>

§

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 FltkError

§

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 StreamInner

§

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

§

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

§

impl !UnwindSafe for devela::_dep::sdl2::ttf::InitError

§

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 Bump

§

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 devela::_dep::rodio::cpal::platform::AlsaStream

§

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

§

impl !UnwindSafe for OutputStream

§

impl !UnwindSafe for devela::_dep::sdl3::timer::Timer

§

impl !UnwindSafe for MediaSourceStream

§

impl !UnwindSafe for ProbeResult

§

impl !UnwindSafe for OutputDevice

§

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 Handle

§

impl !UnwindSafe for RuntimeMetrics

§

impl !UnwindSafe for JoinError

§

impl !UnwindSafe for LocalEnterGuard

§

impl !UnwindSafe for LocalSet

§

impl !UnwindSafe for DefaultCallsite

§

impl !UnwindSafe for Identifier

§

impl !UnwindSafe for DefaultGuard

§

impl !UnwindSafe for WeakDispatch

§

impl !UnwindSafe for Field

§

impl !UnwindSafe for FieldSet

§

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

§

impl !UnwindSafe for EnteredSpan

§

impl !UnwindSafe for Dispatch

§

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

§

impl !UnwindSafe for 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 BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for OneSidedRangeBound

§

impl UnwindSafe for GetDisjointMutError

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for TryReserveErrorKind

§

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

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for devela::_dep::_std::sync::mpmc::RecvTimeoutError

§

impl UnwindSafe for devela::_dep::_std::sync::mpmc::TryRecvError

§

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 ClipboardContent

§

impl UnwindSafe for ClipboardEvent

§

impl UnwindSafe for ContrastMode

§

impl UnwindSafe for devela::_dep::fltk::app::MouseButton

§

impl UnwindSafe for MouseWheel

§

impl UnwindSafe for devela::_dep::fltk::app::Option

§

impl UnwindSafe for devela::_dep::fltk::app::Scheme

§

impl UnwindSafe for BrowserScrollbar

§

impl UnwindSafe for BrowserType

§

impl UnwindSafe for devela::_dep::fltk::browser::FileType

§

impl UnwindSafe for ButtonType

§

impl UnwindSafe for BeepType

§

impl UnwindSafe for devela::_dep::fltk::dialog::ColorMode

§

impl UnwindSafe for FileDialogAction

§

impl UnwindSafe for FileDialogType

§

impl UnwindSafe for CallbackReason

§

impl UnwindSafe for ColorDepth

§

impl UnwindSafe for devela::_dep::fltk::enums::Cursor

§

impl UnwindSafe for FrameType

§

impl UnwindSafe for LabelType

§

impl UnwindSafe for FlexType

§

impl UnwindSafe for PackType

§

impl UnwindSafe for ScrollType

§

impl UnwindSafe for TabsOverflow

§

impl UnwindSafe for RgbScaling

§

impl UnwindSafe for InputType

§

impl UnwindSafe for MenuButtonType

§

impl UnwindSafe for WindowMenuStyle

§

impl UnwindSafe for ChartType

§

impl UnwindSafe for ClockType

§

impl UnwindSafe for OutputType

§

impl UnwindSafe for FltkErrorKind

§

impl UnwindSafe for TableContext

§

impl UnwindSafe for TableResizeFlag

§

impl UnwindSafe for TableRowSelectFlag

§

impl UnwindSafe for TableRowSelectMode

§

impl UnwindSafe for XtermColor

§

impl UnwindSafe for devela::_dep::fltk::text::Cursor

§

impl UnwindSafe for DragType

§

impl UnwindSafe for TextAttr

§

impl UnwindSafe for WrapMode

§

impl UnwindSafe for TreeConnectorStyle

§

impl UnwindSafe for TreeItemDrawMode

§

impl UnwindSafe for TreeItemReselectMode

§

impl UnwindSafe for TreeItemSelect

§

impl UnwindSafe for TreeReason

§

impl UnwindSafe for TreeSelect

§

impl UnwindSafe for TreeSort

§

impl UnwindSafe for CounterType

§

impl UnwindSafe for DialType

§

impl UnwindSafe for ScrollbarType

§

impl UnwindSafe for SliderType

§

impl UnwindSafe for WindowType

§

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 devela::_dep::gilrs::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 devela::_dep::jiff::fmt::friendly::Direction

§

impl UnwindSafe for FractionalUnit

§

impl UnwindSafe for Spacing

§

impl UnwindSafe for Meridiem

§

impl UnwindSafe for PiecesOffset

§

impl UnwindSafe for AmbiguousOffset

§

impl UnwindSafe for Disambiguation

§

impl UnwindSafe for Dst

§

impl UnwindSafe for OffsetConflict

§

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

§

impl UnwindSafe for ClockSpeed

§

impl UnwindSafe for DistortionKind

§

impl UnwindSafe for EqFilterKind

§

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

§

impl UnwindSafe for Easing

§

impl UnwindSafe for StartTime

§

impl UnwindSafe for WhenToStart

§

impl UnwindSafe for Waveform

§

impl UnwindSafe for EndPosition

§

impl UnwindSafe for PlaybackPosition

§

impl UnwindSafe for PlaybackState

§

impl UnwindSafe for TrackPlaybackState

§

impl UnwindSafe for PrefilterConfig

§

impl UnwindSafe for ConnectErrorKind

§

impl UnwindSafe for Ignore

§

impl UnwindSafe for PortInfoError

§

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

§

impl UnwindSafe for AppleGfxApi

§

impl UnwindSafe for LinuxBackend

§

impl UnwindSafe for LinuxX11Gl

§

impl UnwindSafe for WebGLVersion

§

impl UnwindSafe for Backend

§

impl UnwindSafe for devela::_dep::miniquad::BlendFactor

§

impl UnwindSafe for BlendValue

§

impl UnwindSafe for BufferType

§

impl UnwindSafe for BufferUsage

§

impl UnwindSafe for CompareFunc

§

impl UnwindSafe for Comparison

§

impl UnwindSafe for CullFace

§

impl UnwindSafe for CursorIcon

§

impl UnwindSafe for Equation

§

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

§

impl UnwindSafe for FrontFaceOrder

§

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

§

impl UnwindSafe for MipmapFilterMode

§

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

§

impl UnwindSafe for PassAction

§

impl UnwindSafe for devela::_dep::miniquad::PrimitiveType

§

impl UnwindSafe for RawId

§

impl UnwindSafe for ShaderError

§

impl UnwindSafe for ShaderType

§

impl UnwindSafe for devela::_dep::miniquad::StencilOp

§

impl UnwindSafe for devela::_dep::miniquad::TextureAccess

§

impl UnwindSafe for devela::_dep::miniquad::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 IOURING_OP

§

impl UnwindSafe for perf_bpf_event_type_t

§

impl UnwindSafe for perf_branch_sample_type_shift_t

§

impl UnwindSafe for perf_branch_sample_type_t

§

impl UnwindSafe for perf_callchain_context_t

§

impl UnwindSafe for perf_event_read_format_t

§

impl UnwindSafe for perf_event_sample_format_t

§

impl UnwindSafe for perf_event_type_t

§

impl UnwindSafe for perf_hw_cache_id_t

§

impl UnwindSafe for perf_hw_cache_op_id_t

§

impl UnwindSafe for perf_hw_cache_op_result_id_t

§

impl UnwindSafe for perf_hw_id_t

§

impl UnwindSafe for perf_record_ksymbol_type_t

§

impl UnwindSafe for perf_sample_regs_abi_t

§

impl UnwindSafe for perf_sw_ids_t

§

impl UnwindSafe for perf_type_id_t

§

impl UnwindSafe for StreamTag

§

impl UnwindSafe for Hasher

§

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 devela::_dep::pyo3::pyclass::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 BufferSize

§

impl UnwindSafe for BuildStreamError

§

impl UnwindSafe for DefaultStreamConfigError

§

impl UnwindSafe for DeviceNameError

§

impl UnwindSafe for HostId

§

impl UnwindSafe for PauseStreamError

§

impl UnwindSafe for PlayStreamError

§

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

§

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

§

impl UnwindSafe for SupportedBufferSize

§

impl UnwindSafe for SupportedStreamConfigsError

§

impl UnwindSafe for DeviceInner

§

impl UnwindSafe for DevicesInner

§

impl UnwindSafe for HostInner

§

impl UnwindSafe for DecoderError

§

impl UnwindSafe for Mp4Type

§

impl UnwindSafe for DevicesError

§

impl UnwindSafe for PlayError

§

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

§

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

§

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

§

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

§

impl UnwindSafe for FlockOperation

§

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

§

impl UnwindSafe for IoringMsgringCmds

§

impl UnwindSafe for IoringOp

§

impl UnwindSafe for IoringRegisterOp

§

impl UnwindSafe for IoringRestrictionOp

§

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

§

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

§

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

§

impl UnwindSafe for SocketAddrAny

§

impl UnwindSafe for devela::_dep::rustix::net::sockopt::Timeout

§

impl UnwindSafe for DumpableBehavior

§

impl UnwindSafe for EndianMode

§

impl UnwindSafe for FloatingPointMode

§

impl UnwindSafe for MachineCheckMemoryCorruptionKillPolicy

§

impl UnwindSafe for MembarrierCommand

§

impl UnwindSafe for PTracer

§

impl UnwindSafe for Resource

§

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

§

impl UnwindSafe for SpeculationFeature

§

impl UnwindSafe for TimeStampCounterReadability

§

impl UnwindSafe for TimingMethod

§

impl UnwindSafe for VirtualMemoryMapAddress

§

impl UnwindSafe for RebootCommand

§

impl UnwindSafe for Action

§

impl UnwindSafe for OptionalActions

§

impl UnwindSafe for QueueSelector

§

impl UnwindSafe for Capability

§

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

§

impl UnwindSafe for CoreSchedulingScope

§

impl UnwindSafe for FutexOperation

§

impl UnwindSafe for LinkNameSpaceType

§

impl UnwindSafe for NanosleepRelativeResult

§

impl UnwindSafe for SecureComputingMode

§

impl UnwindSafe for SysCallUserDispatchFastSwitch

§

impl UnwindSafe for WakeOp

§

impl UnwindSafe for WakeOpCmp

§

impl UnwindSafe for TimerfdClockId

§

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

§

impl UnwindSafe for AudioStatus

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl2::IntegerOrSdlError

§

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

§

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

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl2::filesystem::PrefPathError

§

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

§

impl UnwindSafe for devela::_dep::sdl2::joystick::HatState

§

impl UnwindSafe for devela::_dep::sdl2::joystick::PowerLevel

§

impl UnwindSafe for devela::_dep::sdl2::keyboard::Scancode

§

impl UnwindSafe for DIR

§

impl UnwindSafe for FILE

§

impl UnwindSafe for fpos64_t

§

impl UnwindSafe for fpos_t

§

impl UnwindSafe for timezone

§

impl UnwindSafe for tpacket_versions

§

impl UnwindSafe for devela::_dep::sdl2::log::Category

§

impl UnwindSafe for devela::_dep::sdl2::log::Priority

§

impl UnwindSafe for devela::_dep::sdl2::messagebox::ShowMessageError

§

impl UnwindSafe for Fading

§

impl UnwindSafe for MusicType

§

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

§

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

§

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

§

impl UnwindSafe for PixelFormatEnum

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for SDL_AudioStatus

§

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

§

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

§

impl UnwindSafe for SDL_BlendMode

§

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

§

impl UnwindSafe for SDL_DUMMY_ENUM

§

impl UnwindSafe for SDL_DisplayEventID

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl2::sys::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 devela::_dep::sdl2::sys::SDL_HintPriority

§

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

§

impl UnwindSafe for SDL_JoystickPowerLevel

§

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

§

impl UnwindSafe for SDL_KeyCode

§

impl UnwindSafe for SDL_Keymod

§

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

§

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

§

impl UnwindSafe for SDL_MessageBoxButtonFlags

§

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

§

impl UnwindSafe for SDL_MessageBoxFlags

§

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

§

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

§

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

§

impl UnwindSafe for SDL_PixelFormatEnum

§

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

§

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

§

impl UnwindSafe for SDL_RendererFlags

§

impl UnwindSafe for SDL_RendererFlip

§

impl UnwindSafe for SDL_SYSWM_TYPE

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for SDL_TextureModulate

§

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

§

impl UnwindSafe for devela::_dep::sdl2::sys::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 devela::_dep::sdl2::ttf::FontError

§

impl UnwindSafe for Hinting

§

impl UnwindSafe for devela::_dep::sdl2::url::OpenUrlError

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for AudioDeviceID

§

impl UnwindSafe for devela::_dep::sdl3::audio::AudioFormat

§

impl UnwindSafe for DialogError

§

impl UnwindSafe for devela::_dep::sdl3::IntegerOrSdlError

§

impl UnwindSafe for devela::_dep::sdl3::event::DisplayEvent

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl3::event::WindowEvent

§

impl UnwindSafe for FileSystemError

§

impl UnwindSafe for devela::_dep::sdl3::filesystem::PrefPathError

§

impl UnwindSafe for devela::_dep::sdl3::gamepad::AddMappingError

§

impl UnwindSafe for devela::_dep::sdl3::gamepad::Axis

§

impl UnwindSafe for devela::_dep::sdl3::gamepad::Button

§

impl UnwindSafe for devela::_dep::sdl3::gamepad::MappingStatus

§

impl UnwindSafe for devela::_dep::sdl3::gpu::BlendFactor

§

impl UnwindSafe for BlendOp

§

impl UnwindSafe for BufferUsageFlags

§

impl UnwindSafe for ColorComponentFlags

§

impl UnwindSafe for devela::_dep::sdl3::gpu::CompareOp

§

impl UnwindSafe for CullMode

§

impl UnwindSafe for FillMode

§

impl UnwindSafe for devela::_dep::sdl3::gpu::Filter

§

impl UnwindSafe for FrontFace

§

impl UnwindSafe for IndexElementSize

§

impl UnwindSafe for LoadOp

§

impl UnwindSafe for devela::_dep::sdl3::gpu::PrimitiveType

§

impl UnwindSafe for SampleCount

§

impl UnwindSafe for SamplerAddressMode

§

impl UnwindSafe for SamplerMipmapMode

§

impl UnwindSafe for ShaderFormat

§

impl UnwindSafe for ShaderStage

§

impl UnwindSafe for devela::_dep::sdl3::gpu::StencilOp

§

impl UnwindSafe for StoreOp

§

impl UnwindSafe for devela::_dep::sdl3::gpu::TextureFormat

§

impl UnwindSafe for TextureType

§

impl UnwindSafe for TextureUsage

§

impl UnwindSafe for TransferBufferUsage

§

impl UnwindSafe for VertexElementFormat

§

impl UnwindSafe for VertexInputRate

§

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

§

impl UnwindSafe for devela::_dep::sdl3::joystick::HatState

§

impl UnwindSafe for devela::_dep::sdl3::joystick::PowerLevel

§

impl UnwindSafe for devela::_dep::sdl3::keyboard::Keycode

§

impl UnwindSafe for devela::_dep::sdl3::keyboard::Scancode

§

impl UnwindSafe for devela::_dep::sdl3::log::Category

§

impl UnwindSafe for devela::_dep::sdl3::log::Priority

§

impl UnwindSafe for devela::_dep::sdl3::messagebox::ShowMessageError

§

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

§

impl UnwindSafe for devela::_dep::sdl3::mouse::MouseWheelDirection

§

impl UnwindSafe for devela::_dep::sdl3::mouse::SystemCursor

§

impl UnwindSafe for PropertiesError

§

impl UnwindSafe for devela::_dep::sdl3::render::BlendMode

§

impl UnwindSafe for ClippingRect

§

impl UnwindSafe for ScaleMode

§

impl UnwindSafe for devela::_dep::sdl3::render::TargetRenderError

§

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

§

impl UnwindSafe for devela::_dep::sdl3::render::TextureValueError

§

impl UnwindSafe for devela::_dep::sdl3::render::UpdateTextureError

§

impl UnwindSafe for devela::_dep::sdl3::render::UpdateTextureYUVError

§

impl UnwindSafe for devela::_dep::sdl3::sys::ffi::VaList

§

impl UnwindSafe for devela::_dep::sdl3::url::OpenUrlError

§

impl UnwindSafe for devela::_dep::sdl3::video::FlashOperation

§

impl UnwindSafe for devela::_dep::sdl3::video::FullscreenType

§

impl UnwindSafe for devela::_dep::sdl3::video::GLProfile

§

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

§

impl UnwindSafe for devela::_dep::sdl3::video::SwapInterval

§

impl UnwindSafe for SystemTheme

§

impl UnwindSafe for devela::_dep::sdl3::video::WindowBuildError

§

impl UnwindSafe for devela::_dep::sdl3::video::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 devela::_dep::symphonia::core::meta::ColorMode

§

impl UnwindSafe for Limit

§

impl UnwindSafe for StandardTagKey

§

impl UnwindSafe for StandardVisualKey

§

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

§

impl UnwindSafe for Instantiate

§

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

§

impl UnwindSafe for DiskKind

§

impl UnwindSafe for ProcessStatus

§

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

§

impl UnwindSafe for ThreadKind

§

impl UnwindSafe for UpdateKind

§

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

§

impl UnwindSafe for AudioError

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for ColorError

§

impl UnwindSafe for CompressionMode

§

impl UnwindSafe for DataError

§

impl UnwindSafe for DataNotEnough

§

impl UnwindSafe for Dither

§

impl UnwindSafe for DrawError

§

impl UnwindSafe for EncodingMode

§

impl UnwindSafe for devela::all::FmtAlignment

§

impl UnwindSafe for devela::all::FontError

§

impl UnwindSafe for devela::all::ImageError

§

impl UnwindSafe for ErrorKind

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for JsEvent

§

impl UnwindSafe for JsPermission

§

impl UnwindSafe for JsPermissionState

§

impl UnwindSafe for devela::all::LayoutError

§

impl UnwindSafe for devela::all::LogLevel

§

impl UnwindSafe for devela::all::LogLevelFilter

§

impl UnwindSafe for MediaError

§

impl UnwindSafe for MidiError

§

impl UnwindSafe for MismatchedBounds

§

impl UnwindSafe for Month

§

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 SpinStrategy

§

impl UnwindSafe for devela::all::TcpShutdown

§

impl UnwindSafe for TimeError

§

impl UnwindSafe for VarError

§

impl UnwindSafe for WaveletUnitRole

§

impl UnwindSafe for devela::all::Weekday

§

impl UnwindSafe for c_void

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128h

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256h

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512h

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for bf16

§

impl UnwindSafe for TryFromSliceError

§

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

§

impl UnwindSafe for 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 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 devela::_dep::_std::os::unix::net::UCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for DefaultRandomSource

§

impl UnwindSafe for devela::_dep::_std::sync::mpmc::RecvError

§

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

§

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

§

impl UnwindSafe for AllocErr

§

impl UnwindSafe for 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 devela::_dep::crossterm::style::Attributes

§

impl UnwindSafe for Colors

§

impl UnwindSafe for ContentStyle

§

impl UnwindSafe for ResetColor

§

impl UnwindSafe for SetAttribute

§

impl UnwindSafe for SetAttributes

§

impl UnwindSafe for SetBackgroundColor

§

impl UnwindSafe for SetColors

§

impl UnwindSafe for SetForegroundColor

§

impl UnwindSafe for SetStyle

§

impl UnwindSafe for SetUnderlineColor

§

impl UnwindSafe for BeginSynchronizedUpdate

§

impl UnwindSafe for Clear

§

impl UnwindSafe for DisableLineWrap

§

impl UnwindSafe for EnableLineWrap

§

impl UnwindSafe for EndSynchronizedUpdate

§

impl UnwindSafe for EnterAlternateScreen

§

impl UnwindSafe for LeaveAlternateScreen

§

impl UnwindSafe for ScrollDown

§

impl UnwindSafe for ScrollUp

§

impl UnwindSafe for SetSize

§

impl UnwindSafe for WindowSize

§

impl UnwindSafe for FileAccess

§

impl UnwindSafe for Preferences

§

impl UnwindSafe for Root

§

impl UnwindSafe for App

§

impl UnwindSafe for devela::_dep::fltk::app::Screen

§

impl UnwindSafe for Browser

§

impl UnwindSafe for CheckBrowser

§

impl UnwindSafe for FileBrowser

§

impl UnwindSafe for HoldBrowser

§

impl UnwindSafe for MultiBrowser

§

impl UnwindSafe for SelectBrowser

§

impl UnwindSafe for devela::_dep::fltk::button::Button

§

impl UnwindSafe for CheckButton

§

impl UnwindSafe for LightButton

§

impl UnwindSafe for RadioButton

§

impl UnwindSafe for RadioLightButton

§

impl UnwindSafe for RadioRoundButton

§

impl UnwindSafe for RepeatButton

§

impl UnwindSafe for ReturnButton

§

impl UnwindSafe for RoundButton

§

impl UnwindSafe for ShortcutButton

§

impl UnwindSafe for ToggleButton

§

impl UnwindSafe for FileChooser

§

impl UnwindSafe for FileChooserType

§

impl UnwindSafe for FileDialog

§

impl UnwindSafe for FileDialogOptions

§

impl UnwindSafe for HelpDialog

§

impl UnwindSafe for LineStyle

§

impl UnwindSafe for Offscreen

§

impl UnwindSafe for devela::_dep::fltk::draw::Region

§

impl UnwindSafe for Align

§

impl UnwindSafe for CallbackTrigger

§

impl UnwindSafe for devela::_dep::fltk::enums::Color

§

impl UnwindSafe for Damage

§

impl UnwindSafe for devela::_dep::fltk::enums::Event

§

impl UnwindSafe for devela::_dep::fltk::enums::Font

§

impl UnwindSafe for devela::_dep::fltk::enums::Key

§

impl UnwindSafe for devela::_dep::fltk::enums::Mode

§

impl UnwindSafe for Shortcut

§

impl UnwindSafe for devela::_dep::fltk::frame::Frame

§

impl UnwindSafe for ColorChooser

§

impl UnwindSafe for Column

§

impl UnwindSafe for Flex

§

impl UnwindSafe for Grid

§

impl UnwindSafe for GridAlign

§

impl UnwindSafe for GridRange

§

impl UnwindSafe for devela::_dep::fltk::group::Group

§

impl UnwindSafe for HGrid

§

impl UnwindSafe for Pack

§

impl UnwindSafe for Row

§

impl UnwindSafe for Scroll

§

impl UnwindSafe for Tabs

§

impl UnwindSafe for Tile

§

impl UnwindSafe for VGrid

§

impl UnwindSafe for Wizard

§

impl UnwindSafe for AnimGifImage

§

impl UnwindSafe for AnimGifImageFlags

§

impl UnwindSafe for BmpImage

§

impl UnwindSafe for GifImage

§

impl UnwindSafe for IcoImage

§

impl UnwindSafe for IconDirEntry

§

impl UnwindSafe for Image

§

impl UnwindSafe for JpegImage

§

impl UnwindSafe for Pixmap

§

impl UnwindSafe for PngImage

§

impl UnwindSafe for PnmImage

§

impl UnwindSafe for RgbImage

§

impl UnwindSafe for SharedImage

§

impl UnwindSafe for SvgImage

§

impl UnwindSafe for TiledImage

§

impl UnwindSafe for XbmImage

§

impl UnwindSafe for XpmImage

§

impl UnwindSafe for FileInput

§

impl UnwindSafe for FloatInput

§

impl UnwindSafe for Input

§

impl UnwindSafe for IntInput

§

impl UnwindSafe for MultilineInput

§

impl UnwindSafe for SecretInput

§

impl UnwindSafe for Choice

§

impl UnwindSafe for MacAppMenu

§

impl UnwindSafe for MenuBar

§

impl UnwindSafe for MenuButton

§

impl UnwindSafe for MenuFlag

§

impl UnwindSafe for MenuItem

§

impl UnwindSafe for SysMenuBar

§

impl UnwindSafe for Chart

§

impl UnwindSafe for Clock

§

impl UnwindSafe for HelpView

§

impl UnwindSafe for InputChoice

§

impl UnwindSafe for Progress

§

impl UnwindSafe for Spinner

§

impl UnwindSafe for Tooltip

§

impl UnwindSafe for MultilineOutput

§

impl UnwindSafe for devela::_dep::fltk::output::Output

§

impl UnwindSafe for Printer

§

impl UnwindSafe for ImageSurface

§

impl UnwindSafe for SvgFileSurface

§

impl UnwindSafe for devela::_dep::fltk::table::Table

§

impl UnwindSafe for TableRow

§

impl UnwindSafe for Attrib

§

impl UnwindSafe for CharFlags

§

impl UnwindSafe for OutFlags

§

impl UnwindSafe for RedrawStyle

§

impl UnwindSafe for ScrollbarStyle

§

impl UnwindSafe for Terminal

§

impl UnwindSafe for Utf8Char

§

impl UnwindSafe for SimpleTerminal

§

impl UnwindSafe for StyleTableEntry

§

impl UnwindSafe for StyleTableEntryExt

§

impl UnwindSafe for TextBuffer

§

impl UnwindSafe for TextDisplay

§

impl UnwindSafe for TextEditor

§

impl UnwindSafe for Tree

§

impl UnwindSafe for TreeItem

§

impl UnwindSafe for Adjuster

§

impl UnwindSafe for Counter

§

impl UnwindSafe for Dial

§

impl UnwindSafe for FillDial

§

impl UnwindSafe for FillSlider

§

impl UnwindSafe for HorFillSlider

§

impl UnwindSafe for HorNiceSlider

§

impl UnwindSafe for HorSlider

§

impl UnwindSafe for HorValueSlider

§

impl UnwindSafe for LineDial

§

impl UnwindSafe for NiceSlider

§

impl UnwindSafe for Roller

§

impl UnwindSafe for Scrollbar

§

impl UnwindSafe for Slider

§

impl UnwindSafe for ValueInput

§

impl UnwindSafe for ValueOutput

§

impl UnwindSafe for ValueSlider

§

impl UnwindSafe for Widget

§

impl UnwindSafe for WidgetTracker

§

impl UnwindSafe for AndroidWindow

§

impl UnwindSafe for DoubleWindow

§

impl UnwindSafe for MenuWindow

§

impl UnwindSafe for OverlayWindow

§

impl UnwindSafe for SingleWindow

§

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

§

impl UnwindSafe for DateTimeFormat

§

impl UnwindSafe for NumberFormat

§

impl UnwindSafe for PluralRules

§

impl UnwindSafe for RelativeTimeFormat

§

impl UnwindSafe for CompileError

§

impl UnwindSafe for Exception

§

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

§

impl UnwindSafe for Instance

§

impl UnwindSafe for LinkError

§

impl UnwindSafe for Memory

§

impl UnwindSafe for Module

§

impl UnwindSafe for RuntimeError

§

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

§

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

§

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

§

impl UnwindSafe for ArrayBuffer

§

impl UnwindSafe for ArrayIntoIter

§

impl UnwindSafe for AsyncIterator

§

impl UnwindSafe for BigInt64Array

§

impl UnwindSafe for BigInt

§

impl UnwindSafe for BigUint64Array

§

impl UnwindSafe for Boolean

§

impl UnwindSafe for DataView

§

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

§

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

§

impl UnwindSafe for EvalError

§

impl UnwindSafe for Float32Array

§

impl UnwindSafe for Float64Array

§

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

§

impl UnwindSafe for Generator

§

impl UnwindSafe for Int8Array

§

impl UnwindSafe for Int16Array

§

impl UnwindSafe for Int32Array

§

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

§

impl UnwindSafe for Iterator

§

impl UnwindSafe for IteratorNext

§

impl UnwindSafe for JsString

§

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

§

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

§

impl UnwindSafe for Object

§

impl UnwindSafe for Promise

§

impl UnwindSafe for devela::_dep::js_sys::Proxy

§

impl UnwindSafe for RangeError

§

impl UnwindSafe for ReferenceError

§

impl UnwindSafe for RegExp

§

impl UnwindSafe for Set

§

impl UnwindSafe for SharedArrayBuffer

§

impl UnwindSafe for Symbol

§

impl UnwindSafe for SyntaxError

§

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

§

impl UnwindSafe for TypeError

§

impl UnwindSafe for Uint8Array

§

impl UnwindSafe for Uint8ClampedArray

§

impl UnwindSafe for Uint16Array

§

impl UnwindSafe for Uint32Array

§

impl UnwindSafe for UriError

§

impl UnwindSafe for WeakMap

§

impl UnwindSafe for WeakSet

§

impl UnwindSafe for CpalBackend

§

impl UnwindSafe for CpalBackendSettings

§

impl UnwindSafe for MockBackend

§

impl UnwindSafe for MockBackendSettings

§

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

§

impl UnwindSafe for ClockTime

§

impl UnwindSafe for CompressorBuilder

§

impl UnwindSafe for DistortionBuilder

§

impl UnwindSafe for EqFilterBuilder

§

impl UnwindSafe for FilterBuilder

§

impl UnwindSafe for PanningControlBuilder

§

impl UnwindSafe for ReverbBuilder

§

impl UnwindSafe for VolumeControlBuilder

§

impl UnwindSafe for ClockInfo

§

impl UnwindSafe for ListenerInfo

§

impl UnwindSafe for MockInfoBuilder

§

impl UnwindSafe for ListenerId

§

impl UnwindSafe for LfoBuilder

§

impl UnwindSafe for ModulatorId

§

impl UnwindSafe for TweenerBuilder

§

impl UnwindSafe for StaticSoundData

§

impl UnwindSafe for StaticSoundSettings

§

impl UnwindSafe for StreamingSoundSettings

§

impl UnwindSafe for 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 devela::_dep::log::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 devela::_dep::midir::InitError

§

impl UnwindSafe for MidiInput

§

impl UnwindSafe for MidiInputPort

§

impl UnwindSafe for MidiOutput

§

impl UnwindSafe for MidiOutputConnection

§

impl UnwindSafe for MidiOutputPort

§

impl UnwindSafe for Conf

§

impl UnwindSafe for Icon

§

impl UnwindSafe for Platform

§

impl UnwindSafe for Bindings

§

impl UnwindSafe for BlendState

§

impl UnwindSafe for BufferId

§

impl UnwindSafe for BufferLayout

§

impl UnwindSafe for ContextInfo

§

impl UnwindSafe for ElapsedQuery

§

impl UnwindSafe for Features

§

impl UnwindSafe for GlContext

§

impl UnwindSafe for GlslSupport

§

impl UnwindSafe for KeyMods

§

impl UnwindSafe for Pipeline

§

impl UnwindSafe for PipelineLayout

§

impl UnwindSafe for PipelineParams

§

impl UnwindSafe for devela::_dep::miniquad::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 devela::_dep::miniquad::VertexAttribute

§

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

§

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

§

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

§

impl UnwindSafe for __kernel_fsid_t

§

impl UnwindSafe for aio_sigset_t

§

impl UnwindSafe for blk_io_trace_remap_t

§

impl UnwindSafe for blk_io_trace_t

§

impl UnwindSafe for blk_user_trace_setup_t

§

impl UnwindSafe for bpf_attr_btf_load_t

§

impl UnwindSafe for bpf_attr_element_t

§

impl UnwindSafe for bpf_attr_getid_t

§

impl UnwindSafe for bpf_attr_info_t

§

impl UnwindSafe for bpf_attr_map_create_t

§

impl UnwindSafe for bpf_attr_obj_t

§

impl UnwindSafe for bpf_attr_prog_attach_t

§

impl UnwindSafe for bpf_attr_prog_load_t

§

impl UnwindSafe for bpf_attr_prog_test_t

§

impl UnwindSafe for bpf_attr_query_t

§

impl UnwindSafe for bpf_attr_raw_tracepoint_t

§

impl UnwindSafe for bpf_attr_task_fd_query_t

§

impl UnwindSafe for bpf_btf_info_t

§

impl UnwindSafe for bpf_cgroup_dev_ctx_t

§

impl UnwindSafe for bpf_cgroup_storage_key_t

§

impl UnwindSafe for bpf_fib_lookup_t

§

impl UnwindSafe for bpf_flow_keys_ipv4_t

§

impl UnwindSafe for bpf_flow_keys_ipv6_t

§

impl UnwindSafe for bpf_flow_keys_t

§

impl UnwindSafe for bpf_func_info_t

§

impl UnwindSafe for bpf_insn_t

§

impl UnwindSafe for bpf_line_info_t

§

impl UnwindSafe for bpf_lpm_trie_key_t

§

impl UnwindSafe for bpf_map_info_t

§

impl UnwindSafe for bpf_perf_event_value_t

§

impl UnwindSafe for bpf_prog_info_t

§

impl UnwindSafe for bpf_raw_tracepoint_args_t

§

impl UnwindSafe for bpf_sock_addr_t

§

impl UnwindSafe for bpf_sock_ops_t

§

impl UnwindSafe for bpf_sock_t

§

impl UnwindSafe for bpf_sock_tuple_ipv4_t

§

impl UnwindSafe for bpf_sock_tuple_ipv6_t

§

impl UnwindSafe for bpf_spin_lock_t

§

impl UnwindSafe for bpf_stack_build_id_t

§

impl UnwindSafe for bpf_tcp_sock_t

§

impl UnwindSafe for cachestat_range_t

§

impl UnwindSafe for cachestat_t

§

impl UnwindSafe for cap_user_data_t

§

impl UnwindSafe for cap_user_header_t

§

impl UnwindSafe for clone_args_t

§

impl UnwindSafe for cmsghdr_t

§

impl UnwindSafe for compat_statfs64_t

§

impl UnwindSafe for devela::_dep::nc::cpu_set_t

§

impl UnwindSafe for epoll_event_t

§

impl UnwindSafe for f_owner_ex_t

§

impl UnwindSafe for fd_set_t

§

impl UnwindSafe for fiemap_extent_t

§

impl UnwindSafe for fiemap_t

§

impl UnwindSafe for file_clone_range_t

§

impl UnwindSafe for file_dedupe_range_info_t

§

impl UnwindSafe for file_dedupe_range_t

§

impl UnwindSafe for file_handle_t

§

impl UnwindSafe for files_stat_struct_t

§

impl UnwindSafe for flock64_t

§

impl UnwindSafe for flock_t

§

impl UnwindSafe for fscrypt_policy_t

§

impl UnwindSafe for devela::_dep::nc::fsid_t

§

impl UnwindSafe for fstrim_range_t

§

impl UnwindSafe for fsxattr_t

§

impl UnwindSafe for futex_waitv_t

§

impl UnwindSafe for getcpu_cache_t

§

impl UnwindSafe for group_filter_t

§

impl UnwindSafe for group_req_t

§

impl UnwindSafe for group_source_req_t

§

impl UnwindSafe for if_dqblk_t

§

impl UnwindSafe for if_dqinfo_t

§

impl UnwindSafe for if_nextdqblk_t

§

impl UnwindSafe for in6_addr_t

§

impl UnwindSafe for in6_flowlabel_req_t

§

impl UnwindSafe for in_addr_t

§

impl UnwindSafe for in_pktinfo_t

§

impl UnwindSafe for inodes_stat_t

§

impl UnwindSafe for inotify_event_t

§

impl UnwindSafe for io_cqring_offsets_t

§

impl UnwindSafe for io_event_t

§

impl UnwindSafe for io_file_t

§

impl UnwindSafe for io_sqring_offsets_t

§

impl UnwindSafe for io_uring_cqe_t

§

impl UnwindSafe for io_uring_files_update_t

§

impl UnwindSafe for io_uring_params_t

§

impl UnwindSafe for io_uring_probe_op_t

§

impl UnwindSafe for io_uring_probe_t

§

impl UnwindSafe for io_uring_sqe_buf_t

§

impl UnwindSafe for io_uring_sqe_t

§

impl UnwindSafe for iocb_t

§

impl UnwindSafe for iovec_t

§

impl UnwindSafe for ip_mreq_source_t

§

impl UnwindSafe for ip_mreq_t

§

impl UnwindSafe for ip_mreqn_t

§

impl UnwindSafe for ip_msfilter_t

§

impl UnwindSafe for ipc64_perm_t

§

impl UnwindSafe for ipc_kludge_t

§

impl UnwindSafe for ipc_perm_t

§

impl UnwindSafe for ipv6_mreq_t

§

impl UnwindSafe for itimerspec64_t

§

impl UnwindSafe for itimerspec_t

§

impl UnwindSafe for itimerval_t

§

impl UnwindSafe for kcmp_epoll_slot_t

§

impl UnwindSafe for kernel_itimerspec_t

§

impl UnwindSafe for kernel_sock_timeval_t

§

impl UnwindSafe for kernel_sockaddr_storage_t

§

impl UnwindSafe for kernel_timespec_t

§

impl UnwindSafe for kernel_timex_t

§

impl UnwindSafe for kernel_timex_timeval_t

§

impl UnwindSafe for kernle_old_timeval_t

§

impl UnwindSafe for kexec_segment_t

§

impl UnwindSafe for ktermios_t

§

impl UnwindSafe for linger_t

§

impl UnwindSafe for linux_dirent64_t

§

impl UnwindSafe for linux_dirent_t

§

impl UnwindSafe for mmsghdr_t

§

impl UnwindSafe for mnt_id_req_t

§

impl UnwindSafe for mount_attr_t

§

impl UnwindSafe for mq_attr_t

§

impl UnwindSafe for msgbuf_t

§

impl UnwindSafe for msghdr_t

§

impl UnwindSafe for msginfo_t

§

impl UnwindSafe for msqid64_ds_t

§

impl UnwindSafe for msqid_ds_t

§

impl UnwindSafe for new_utsname_t

§

impl UnwindSafe for open_how_t

§

impl UnwindSafe for perf_branch_entry_t

§

impl UnwindSafe for perf_event_attr_t

§

impl UnwindSafe for perf_event_header_t

§

impl UnwindSafe for perf_event_mmap_page_cap_detail_t

§

impl UnwindSafe for perf_event_mmap_page_t

§

impl UnwindSafe for perf_event_query_bpf_t

§

impl UnwindSafe for perf_mem_data_mem_t

§

impl UnwindSafe for pollfd_t

§

impl UnwindSafe for prctl_mm_map_t

§

impl UnwindSafe for devela::_dep::nc::pthread_barrierattr_t

§

impl UnwindSafe for devela::_dep::nc::pthread_condattr_t

§

impl UnwindSafe for devela::_dep::nc::pthread_mutexattr_t

§

impl UnwindSafe for devela::_dep::nc::pthread_rwlockattr_t

§

impl UnwindSafe for ptrace_peeksiginfo_args_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_entry_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_exit_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_seccomp_t

§

impl UnwindSafe for ptrace_syscall_info_t

§

impl UnwindSafe for rlimit64_t

§

impl UnwindSafe for rlimit_t

§

impl UnwindSafe for robust_list_head_t

§

impl UnwindSafe for robust_list_t

§

impl UnwindSafe for rseq_cs_ptr_t

§

impl UnwindSafe for rseq_cs_t

§

impl UnwindSafe for rseq_t

§

impl UnwindSafe for rusage_t

§

impl UnwindSafe for sched_attr_t

§

impl UnwindSafe for sched_param_t

§

impl UnwindSafe for scm_timestamping_internal_t

§

impl UnwindSafe for seccomp_data_t

§

impl UnwindSafe for seccomp_metadata_t

§

impl UnwindSafe for seccomp_notif_resp_t

§

impl UnwindSafe for seccomp_notif_sizes_t

§

impl UnwindSafe for seccomp_notif_t

§

impl UnwindSafe for sembuf_t

§

impl UnwindSafe for semid_ds_t

§

impl UnwindSafe for seminfo_t

§

impl UnwindSafe for serial_icounter_struct_t

§

impl UnwindSafe for serial_iso7816_t

§

impl UnwindSafe for serial_multiport_struct_t

§

impl UnwindSafe for serial_rs485_t

§

impl UnwindSafe for serial_struct_t

§

impl UnwindSafe for shm_info_t

§

impl UnwindSafe for shmid64_ds_t

§

impl UnwindSafe for shmid_ds_t

§

impl UnwindSafe for shminfo64_t

§

impl UnwindSafe for shminfo_t

§

impl UnwindSafe for si_kill_t

§

impl UnwindSafe for si_rt_t

§

impl UnwindSafe for si_sigchld_t

§

impl UnwindSafe for si_sigpoll_t

§

impl UnwindSafe for si_sigsys_t

§

impl UnwindSafe for si_timer_t

§

impl UnwindSafe for sigaction_t

§

impl UnwindSafe for sigaltstack_t

§

impl UnwindSafe for sigev_thread_t

§

impl UnwindSafe for sigevent_t

§

impl UnwindSafe for siginfo_intern_t

§

impl UnwindSafe for devela::_dep::nc::sigset_t

§

impl UnwindSafe for sk_msg_md_t

§

impl UnwindSafe for sk_reuseport_md_t

§

impl UnwindSafe for sockaddr_in6_t

§

impl UnwindSafe for sockaddr_in_t

§

impl UnwindSafe for sockaddr_t

§

impl UnwindSafe for stat_t

§

impl UnwindSafe for statfs64_t

§

impl UnwindSafe for statfs_t

§

impl UnwindSafe for statmount_t

§

impl UnwindSafe for statx_t

§

impl UnwindSafe for statx_timestamp_t

§

impl UnwindSafe for sysctl_args_t

§

impl UnwindSafe for sysinfo_t

§

impl UnwindSafe for termio_t

§

impl UnwindSafe for termios2_t

§

impl UnwindSafe for termios_t

§

impl UnwindSafe for timespec64_t

§

impl UnwindSafe for timespec_t

§

impl UnwindSafe for timeval_t

§

impl UnwindSafe for timex_t

§

impl UnwindSafe for timezone_t

§

impl UnwindSafe for tms_t

§

impl UnwindSafe for ucred_t

§

impl UnwindSafe for user_desc_t

§

impl UnwindSafe for ustat_t

§

impl UnwindSafe for utimbuf_t

§

impl UnwindSafe for winsize_t

§

impl UnwindSafe for xdp_md_t

§

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

§

impl UnwindSafe for 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 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 PyFutureFeatures

§

impl UnwindSafe for PyGenObject

§

impl UnwindSafe for PyGetSetDef

§

impl UnwindSafe for PyGetSetDescrObject

§

impl UnwindSafe for PyHash_FuncDef

§

impl UnwindSafe for PyHeapTypeObject

§

impl UnwindSafe for PyImportErrorObject

§

impl UnwindSafe for PyInterpreterState

§

impl UnwindSafe for PyListObject

§

impl UnwindSafe for PyLongObject

§

impl UnwindSafe for PyMappingMethods

§

impl UnwindSafe for PyMemAllocatorEx

§

impl UnwindSafe for PyMemberDef

§

impl UnwindSafe for PyMemberDescrObject

§

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

§

impl UnwindSafe for PyMethodDescrObject

§

impl UnwindSafe for PyModuleDef

§

impl UnwindSafe for PyModuleDef_Base

§

impl UnwindSafe for PyModuleDef_Slot

§

impl UnwindSafe for PyNumberMethods

§

impl UnwindSafe for PyOSErrorObject

§

impl UnwindSafe for PyObject

§

impl UnwindSafe for PyObjectArenaAllocator

§

impl UnwindSafe for PyPreConfig

§

impl UnwindSafe for PySequenceMethods

§

impl UnwindSafe for PySetObject

§

impl UnwindSafe for PySliceObject

§

impl UnwindSafe for PyStatus

§

impl UnwindSafe for PyStopIterationObject

§

impl UnwindSafe for PyStructSequence_Desc

§

impl UnwindSafe for PyStructSequence_Field

§

impl UnwindSafe for PySyntaxErrorObject

§

impl UnwindSafe for PySystemExitObject

§

impl UnwindSafe for PyThreadState

§

impl UnwindSafe for PyTryBlock

§

impl UnwindSafe for PyTupleObject

§

impl UnwindSafe for PyTypeObject

§

impl UnwindSafe for PyType_Slot

§

impl UnwindSafe for PyType_Spec

§

impl UnwindSafe for PyUnicodeErrorObject

§

impl UnwindSafe for PyUnicodeObject

§

impl UnwindSafe for PyVarObject

§

impl UnwindSafe for PyWideStringList

§

impl UnwindSafe for PyWrapperDescrObject

§

impl UnwindSafe for Py_buffer

§

impl UnwindSafe for Py_complex

§

impl UnwindSafe for _PyDateTime_BaseDateTime

§

impl UnwindSafe for _PyDateTime_BaseTime

§

impl UnwindSafe for _PyErr_StackItem

§

impl UnwindSafe for _PyOpcache

§

impl UnwindSafe for _PyWeakReference

§

impl UnwindSafe for _frozen

§

impl UnwindSafe for _inittab

§

impl UnwindSafe for setentry

§

impl UnwindSafe for wrapperbase

§

impl UnwindSafe for PanicException

§

impl UnwindSafe for PyBackedBytes

§

impl UnwindSafe for PyBackedStr

§

impl UnwindSafe for PyBorrowError

§

impl UnwindSafe for PyBorrowMutError

§

impl UnwindSafe for PyAny

§

impl UnwindSafe for PyTraverseError

§

impl UnwindSafe for PyBool

§

impl UnwindSafe for PyByteArray

§

impl UnwindSafe for PyBytes

§

impl UnwindSafe for PyCFunction

§

impl UnwindSafe for PyCapsule

§

impl UnwindSafe for PyCode

§

impl UnwindSafe for PyComplex

§

impl UnwindSafe for PyDate

§

impl UnwindSafe for PyDateTime

§

impl UnwindSafe for PyDelta

§

impl UnwindSafe for PyDict

§

impl UnwindSafe for PyDictItems

§

impl UnwindSafe for PyDictKeys

§

impl UnwindSafe for PyDictValues

§

impl UnwindSafe for PyEllipsis

§

impl UnwindSafe for PyFloat

§

impl UnwindSafe for PyFrame

§

impl UnwindSafe for PyFrozenSet

§

impl UnwindSafe for PyFunction

§

impl UnwindSafe for PyInt

§

impl UnwindSafe for PyIterator

§

impl UnwindSafe for PyList

§

impl UnwindSafe for PyMapping

§

impl UnwindSafe for PyMappingProxy

§

impl UnwindSafe for PyMemoryView

§

impl UnwindSafe for PyModule

§

impl UnwindSafe for PyNone

§

impl UnwindSafe for PyNotImplemented

§

impl UnwindSafe for PySequence

§

impl UnwindSafe for PySet

§

impl UnwindSafe for PySlice

§

impl UnwindSafe for PySliceIndices

§

impl UnwindSafe for PyString

§

impl UnwindSafe for PySuper

§

impl UnwindSafe for PyTime

§

impl UnwindSafe for PyTraceback

§

impl UnwindSafe for PyTuple

§

impl UnwindSafe for PyType

§

impl UnwindSafe for PyTzInfo

§

impl UnwindSafe for PyWeakref

§

impl UnwindSafe for PyWeakrefProxy

§

impl UnwindSafe for PyWeakrefReference

§

impl UnwindSafe for 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 devela::_dep::rodio::cpal::platform::AlsaDevice

§

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

§

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

§

impl UnwindSafe for BackendSpecificError

§

impl UnwindSafe for Data

§

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

§

impl UnwindSafe for HostUnavailable

§

impl UnwindSafe for I24

§

impl UnwindSafe for I48

§

impl UnwindSafe for InputCallbackInfo

§

impl UnwindSafe for InputStreamTimestamp

§

impl UnwindSafe for OutputCallbackInfo

§

impl UnwindSafe for OutputStreamTimestamp

§

impl UnwindSafe for SampleRate

§

impl UnwindSafe for StreamConfig

§

impl UnwindSafe for StreamInstant

§

impl UnwindSafe for SupportedInputConfigs

§

impl UnwindSafe for SupportedOutputConfigs

§

impl UnwindSafe for SupportedStreamConfigRange

§

impl UnwindSafe for U24

§

impl UnwindSafe for U48

§

impl UnwindSafe for Chirp

§

impl UnwindSafe for SignalGenerator

§

impl UnwindSafe for SineWave

§

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

§

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

§

impl UnwindSafe for OutputStreamHandle

§

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

§

impl UnwindSafe for SpatialSink

§

impl UnwindSafe for SupportedStreamConfig

§

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

§

impl UnwindSafe for EventVec

§

impl UnwindSafe for EventfdFlags

§

impl UnwindSafe for FdSetElement

§

impl UnwindSafe for PollFlags

§

impl UnwindSafe for OwnedFd

§

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

§

impl UnwindSafe for ReadFlags

§

impl UnwindSafe for WatchFlags

§

impl UnwindSafe for Access

§

impl UnwindSafe for AtFlags

§

impl UnwindSafe for Dir

§

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

§

impl UnwindSafe for FallocateFlags

§

impl UnwindSafe for FdFlags

§

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

§

impl UnwindSafe for IFlags

§

impl UnwindSafe for MemfdFlags

§

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

§

impl UnwindSafe for MountFlags

§

impl UnwindSafe for MountPropagationFlags

§

impl UnwindSafe for OFlags

§

impl UnwindSafe for RenameFlags

§

impl UnwindSafe for ResolveFlags

§

impl UnwindSafe for SealFlags

§

impl UnwindSafe for StatVfs

§

impl UnwindSafe for StatVfsMountFlags

§

impl UnwindSafe for StatxFlags

§

impl UnwindSafe for Timestamps

§

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

§

impl UnwindSafe for UnmountFlags

§

impl UnwindSafe for XattrFlags

§

impl UnwindSafe for DupFlags

§

impl UnwindSafe for Errno

§

impl UnwindSafe for ReadWriteFlags

§

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

§

impl UnwindSafe for EventFlags

§

impl UnwindSafe for IoringAcceptFlags

§

impl UnwindSafe for IoringAsyncCancelFlags

§

impl UnwindSafe for IoringCqFlags

§

impl UnwindSafe for IoringCqeFlags

§

impl UnwindSafe for IoringEnterFlags

§

impl UnwindSafe for IoringFeatureFlags

§

impl UnwindSafe for IoringFsyncFlags

§

impl UnwindSafe for IoringMsgringFlags

§

impl UnwindSafe for IoringOpFlags

§

impl UnwindSafe for IoringPollFlags

§

impl UnwindSafe for IoringRecvFlags

§

impl UnwindSafe for IoringRegisterFlags

§

impl UnwindSafe for IoringRsrcFlags

§

impl UnwindSafe for IoringSendFlags

§

impl UnwindSafe for IoringSetupFlags

§

impl UnwindSafe for IoringSqFlags

§

impl UnwindSafe for IoringSqeFlags

§

impl UnwindSafe for IoringTimeoutFlags

§

impl UnwindSafe for RecvFlags

§

impl UnwindSafe for RecvmsgOutFlags

§

impl UnwindSafe for SendFlags

§

impl UnwindSafe for SocketFlags

§

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

§

impl UnwindSafe for addr3_struct

§

impl UnwindSafe for addr_len_struct

§

impl UnwindSafe for buf_ring_bufs_struct

§

impl UnwindSafe for buf_ring_tail_struct

§

impl UnwindSafe for cmd_op_struct

§

impl UnwindSafe for io_cqring_offsets

§

impl UnwindSafe for io_sqring_offsets

§

impl UnwindSafe for io_uring_buf

§

impl UnwindSafe for io_uring_buf_reg

§

impl UnwindSafe for io_uring_buf_ring

§

impl UnwindSafe for io_uring_cqe

§

impl UnwindSafe for io_uring_files_update

§

impl UnwindSafe for io_uring_getevents_arg

§

impl UnwindSafe for io_uring_params

§

impl UnwindSafe for io_uring_probe

§

impl UnwindSafe for io_uring_probe_op

§

impl UnwindSafe for io_uring_ptr

§

impl UnwindSafe for io_uring_recvmsg_out

§

impl UnwindSafe for io_uring_restriction

§

impl UnwindSafe for io_uring_rsrc_register

§

impl UnwindSafe for io_uring_rsrc_update2

§

impl UnwindSafe for io_uring_rsrc_update

§

impl UnwindSafe for io_uring_sqe

§

impl UnwindSafe for io_uring_sync_cancel_reg

§

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

§

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

§

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

§

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

§

impl UnwindSafe for __kernel_sockaddr_storage

§

impl UnwindSafe for tail_or_bufs_struct

§

impl UnwindSafe for Opcode

§

impl UnwindSafe for MapFlags

§

impl UnwindSafe for MlockAllFlags

§

impl UnwindSafe for MlockFlags

§

impl UnwindSafe for MprotectFlags

§

impl UnwindSafe for MremapFlags

§

impl UnwindSafe for MsyncFlags

§

impl UnwindSafe for ProtFlags

§

impl UnwindSafe for UserfaultfdFlags

§

impl UnwindSafe for FsMountFlags

§

impl UnwindSafe for FsOpenFlags

§

impl UnwindSafe for FsPickFlags

§

impl UnwindSafe for MountAttrFlags

§

impl UnwindSafe for MoveMountFlags

§

impl UnwindSafe for OpenTreeFlags

§

impl UnwindSafe for AddressFamily

§

impl UnwindSafe for Protocol

§

impl UnwindSafe for RecvMsgReturn

§

impl UnwindSafe for SocketAddrUnix

§

impl UnwindSafe for SocketType

§

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

§

impl UnwindSafe for SockaddrXdpFlags

§

impl UnwindSafe for SocketAddrXdp

§

impl UnwindSafe for XdpDesc

§

impl UnwindSafe for XdpDescOptions

§

impl UnwindSafe for XdpMmapOffsets

§

impl UnwindSafe for XdpOptions

§

impl UnwindSafe for XdpOptionsFlags

§

impl UnwindSafe for XdpRingFlags

§

impl UnwindSafe for XdpRingOffset

§

impl UnwindSafe for XdpStatistics

§

impl UnwindSafe for XdpUmemReg

§

impl UnwindSafe for XdpUmemRegFlags

§

impl UnwindSafe for DecInt

§

impl UnwindSafe for PipeFlags

§

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

§

impl UnwindSafe for CpuSet

§

impl UnwindSafe for Cpuid

§

impl UnwindSafe for FloatingPointEmulationControl

§

impl UnwindSafe for FloatingPointExceptionMode

§

impl UnwindSafe for MembarrierQuery

§

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

§

impl UnwindSafe for PidfdFlags

§

impl UnwindSafe for PidfdGetfdFlags

§

impl UnwindSafe for PrctlMmMap

§

impl UnwindSafe for Rlimit

§

impl UnwindSafe for SpeculationFeatureControl

§

impl UnwindSafe for SpeculationFeatureState

§

impl UnwindSafe for UnalignedAccessControl

§

impl UnwindSafe for WaitOptions

§

impl UnwindSafe for WaitStatus

§

impl UnwindSafe for WaitidOptions

§

impl UnwindSafe for WaitidStatus

§

impl UnwindSafe for OpenptFlags

§

impl UnwindSafe for GetRandomFlags

§

impl UnwindSafe for ShmOFlags

§

impl UnwindSafe for Uname

§

impl UnwindSafe for ControlModes

§

impl UnwindSafe for InputModes

§

impl UnwindSafe for LocalModes

§

impl UnwindSafe for OutputModes

§

impl UnwindSafe for SpecialCodeIndex

§

impl UnwindSafe for SpecialCodes

§

impl UnwindSafe for Termios

§

impl UnwindSafe for CapabilitiesSecureBits

§

impl UnwindSafe for CapabilityFlags

§

impl UnwindSafe for CapabilitySets

§

impl UnwindSafe for Flags

§

impl UnwindSafe for SVEVectorLengthConfig

§

impl UnwindSafe for TaggedAddressMode

§

impl UnwindSafe for ThreadNameSpaceType

§

impl UnwindSafe for UnshareFlags

§

impl UnwindSafe for TimerfdFlags

§

impl UnwindSafe for TimerfdTimerFlags

§

impl UnwindSafe for AudioCVT

§

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

§

impl UnwindSafe for AudioSpecDesired

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl2::clipboard::ClipboardUtil

§

impl UnwindSafe for GameController

§

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

§

impl UnwindSafe for FPSManager

§

impl UnwindSafe for devela::_dep::sdl2::haptic::Haptic

§

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

§

impl UnwindSafe for Sdl2ImageContext

§

impl UnwindSafe for Guid

§

impl UnwindSafe for devela::_dep::sdl2::joystick::Joystick

§

impl UnwindSafe for devela::_dep::sdl2::keyboard::KeyboardUtil

§

impl UnwindSafe for devela::_dep::sdl2::keyboard::Keycode

§

impl UnwindSafe for devela::_dep::sdl2::keyboard::Mod

§

impl UnwindSafe for devela::_dep::sdl2::keyboard::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 devela::_dep::sdl2::libc::cpu_set_t

§

impl UnwindSafe for dirent64

§

impl UnwindSafe for dirent

§

impl UnwindSafe for dl_phdr_info

§

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 devela::_dep::sdl2::libc::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 devela::_dep::sdl2::libc::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 mcontext_t

§

impl UnwindSafe for mmsghdr

§

impl UnwindSafe for mntent

§

impl UnwindSafe for mount_attr

§

impl UnwindSafe for mq_attr

§

impl UnwindSafe for devela::_dep::sdl2::libc::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 devela::_dep::sdl2::libc::open_how

§

impl UnwindSafe for option

§

impl UnwindSafe for packet_mreq

§

impl UnwindSafe for passwd

§

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_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 devela::_dep::sdl2::libc::siginfo_t

§

impl UnwindSafe for signalfd_siginfo

§

impl UnwindSafe for devela::_dep::sdl2::libc::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 devela::_dep::sdl2::libc::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_gcm_128

§

impl UnwindSafe for tls12_crypto_info_aes_gcm_256

§

impl UnwindSafe for tls12_crypto_info_chacha20_poly1305

§

impl UnwindSafe for tls_crypto_info

§

impl UnwindSafe for 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 devela::_dep::sdl2::messagebox::MessageBoxButtonFlag

§

impl UnwindSafe for devela::_dep::sdl2::messagebox::MessageBoxColorScheme

§

impl UnwindSafe for devela::_dep::sdl2::messagebox::MessageBoxFlag

§

impl UnwindSafe for 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 devela::_dep::sdl2::mouse::MouseState

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl2::rect::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 devela::_dep::sdl2::render::RendererInfo

§

impl UnwindSafe for SdlError

§

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

§

impl UnwindSafe for devela::_dep::sdl2::AudioSubsystem

§

impl UnwindSafe for devela::_dep::sdl2::EventPump

§

impl UnwindSafe for devela::_dep::sdl2::EventSubsystem

§

impl UnwindSafe for GameControllerSubsystem

§

impl UnwindSafe for devela::_dep::sdl2::HapticSubsystem

§

impl UnwindSafe for devela::_dep::sdl2::JoystickSubsystem

§

impl UnwindSafe for devela::_dep::sdl2::Sdl

§

impl UnwindSafe for devela::_dep::sdl2::SensorSubsystem

§

impl UnwindSafe for TimerSubsystem

§

impl UnwindSafe for devela::_dep::sdl2::VideoSubsystem

§

impl UnwindSafe for devela::_dep::sdl2::surface::SurfaceRef

§

impl UnwindSafe for FPSmanager

§

impl UnwindSafe for Mix_Chunk

§

impl UnwindSafe for _Mix_Music

§

impl UnwindSafe for Depth

§

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

§

impl UnwindSafe for SDL_AudioCVT

§

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

§

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

§

impl UnwindSafe for SDL_BlitMap

§

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

§

impl UnwindSafe for devela::_dep::sdl2::sys::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 devela::_dep::sdl2::sys::SDL_Cursor

§

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

§

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

§

impl UnwindSafe for SDL_DollarGestureEvent

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for SDL_GameControllerButtonBind

§

impl UnwindSafe for SDL_GameControllerButtonBind__bindgen_ty_1__bindgen_ty_1

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for SDL_Keysym

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for SDL_MultiGestureEvent

§

impl UnwindSafe for SDL_OSEvent

§

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

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl2::sys::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 devela::_dep::sdl2::sys::SDL_Rect

§

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

§

impl UnwindSafe for SDL_RendererInfo

§

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

§

impl UnwindSafe for devela::_dep::sdl2::sys::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 devela::_dep::sdl2::sys::SDL_TextEditingEvent

§

impl UnwindSafe for SDL_TextEditingExtEvent

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl2::sys::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 devela::_dep::sdl2::sys::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 ScreenFormat

§

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

§

impl UnwindSafe for VkInstance_T

§

impl UnwindSafe for VkSurfaceKHR_T

§

impl UnwindSafe for XAnyEvent

§

impl UnwindSafe for XArc

§

impl UnwindSafe for XButtonEvent

§

impl UnwindSafe for XChar2b

§

impl UnwindSafe for XCharStruct

§

impl UnwindSafe for XCirculateEvent

§

impl UnwindSafe for XCirculateRequestEvent

§

impl UnwindSafe for XClientMessageEvent

§

impl UnwindSafe for XColor

§

impl UnwindSafe for XColormapEvent

§

impl UnwindSafe for XConfigureEvent

§

impl UnwindSafe for XConfigureRequestEvent

§

impl UnwindSafe for XCreateWindowEvent

§

impl UnwindSafe for XCrossingEvent

§

impl UnwindSafe for XDestroyWindowEvent

§

impl UnwindSafe for XErrorEvent

§

impl UnwindSafe for XExposeEvent

§

impl UnwindSafe for XExtCodes

§

impl UnwindSafe for XFocusChangeEvent

§

impl UnwindSafe for XFontProp

§

impl UnwindSafe for XFontSetExtents

§

impl UnwindSafe for XFontStruct

§

impl UnwindSafe for XGCValues

§

impl UnwindSafe for XGenericEvent

§

impl UnwindSafe for XGenericEventCookie

§

impl UnwindSafe for XGraphicsExposeEvent

§

impl UnwindSafe for XGravityEvent

§

impl UnwindSafe for XHostAddress

§

impl UnwindSafe for XICCallback

§

impl UnwindSafe for XIMCallback

§

impl UnwindSafe for XIMStyles

§

impl UnwindSafe for XIMValuesList

§

impl UnwindSafe for XKeyEvent

§

impl UnwindSafe for XKeyboardControl

§

impl UnwindSafe for XKeyboardState

§

impl UnwindSafe for XKeymapEvent

§

impl UnwindSafe for XMapEvent

§

impl UnwindSafe for XMapRequestEvent

§

impl UnwindSafe for XMappingEvent

§

impl UnwindSafe for XModifierKeymap

§

impl UnwindSafe for XMotionEvent

§

impl UnwindSafe for XNoExposeEvent

§

impl UnwindSafe for XOMCharSetList

§

impl UnwindSafe for XOMFontInfo

§

impl UnwindSafe for XOMOrientation

§

impl UnwindSafe for XPixmapFormatValues

§

impl UnwindSafe for XPoint

§

impl UnwindSafe for XPropertyEvent

§

impl UnwindSafe for XRectangle

§

impl UnwindSafe for XReparentEvent

§

impl UnwindSafe for XResizeRequestEvent

§

impl UnwindSafe for XSegment

§

impl UnwindSafe for XSelectionClearEvent

§

impl UnwindSafe for XSelectionEvent

§

impl UnwindSafe for XSelectionRequestEvent

§

impl UnwindSafe for XServerInterpretedAddress

§

impl UnwindSafe for XSetWindowAttributes

§

impl UnwindSafe for XTextItem16

§

impl UnwindSafe for XTextItem

§

impl UnwindSafe for XTimeCoord

§

impl UnwindSafe for XUnmapEvent

§

impl UnwindSafe for XVisibilityEvent

§

impl UnwindSafe for 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 _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 __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 devela::_dep::sdl2::video::gl_attr::ContextFlags

§

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

§

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

§

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

§

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

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl3::audio::AudioDevice

§

impl UnwindSafe for devela::_dep::sdl3::audio::AudioSpec

§

impl UnwindSafe for devela::_dep::sdl3::audio::AudioSpecWAV

§

impl UnwindSafe for AudioStream

§

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

§

impl UnwindSafe for devela::_dep::sdl3::clipboard::ClipboardUtil

§

impl UnwindSafe for devela::_dep::sdl3::event::EventSender

§

impl UnwindSafe for SDL_EnumerationResult

§

impl UnwindSafe for SDL_Folder

§

impl UnwindSafe for GlobFlags

§

impl UnwindSafe for PathInfo

§

impl UnwindSafe for SDL_PathType

§

impl UnwindSafe for devela::_dep::sdl3::gamepad::Gamepad

§

impl UnwindSafe for Buffer

§

impl UnwindSafe for BufferBinding

§

impl UnwindSafe for BufferRegion

§

impl UnwindSafe for ColorTargetBlendState

§

impl UnwindSafe for ColorTargetDescription

§

impl UnwindSafe for ColorTargetInfo

§

impl UnwindSafe for CommandBuffer

§

impl UnwindSafe for ComputePass

§

impl UnwindSafe for ComputePipeline

§

impl UnwindSafe for CopyPass

§

impl UnwindSafe for DepthStencilState

§

impl UnwindSafe for DepthStencilTargetInfo

§

impl UnwindSafe for devela::_dep::sdl3::gpu::Device

§

impl UnwindSafe for GraphicsPipeline

§

impl UnwindSafe for GraphicsPipelineTargetInfo

§

impl UnwindSafe for RasterizerState

§

impl UnwindSafe for devela::_dep::sdl3::gpu::RenderPass

§

impl UnwindSafe for Sampler

§

impl UnwindSafe for SamplerCreateInfo

§

impl UnwindSafe for Shader

§

impl UnwindSafe for StencilOpState

§

impl UnwindSafe for TextureCreateInfo

§

impl UnwindSafe for TextureRegion

§

impl UnwindSafe for TextureSamplerBinding

§

impl UnwindSafe for TextureTransferInfo

§

impl UnwindSafe for TransferBuffer

§

impl UnwindSafe for TransferBufferLocation

§

impl UnwindSafe for devela::_dep::sdl3::gpu::VertexAttribute

§

impl UnwindSafe for VertexBufferDescription

§

impl UnwindSafe for VertexInputState

§

impl UnwindSafe for devela::_dep::sdl3::haptic::Haptic

§

impl UnwindSafe for devela::_dep::sdl3::joystick::Joystick

§

impl UnwindSafe for JoystickInstance

§

impl UnwindSafe for devela::_dep::sdl3::joystick::PowerInfo

§

impl UnwindSafe for devela::_dep::sdl3::keyboard::KeyboardUtil

§

impl UnwindSafe for devela::_dep::sdl3::keyboard::Mod

§

impl UnwindSafe for devela::_dep::sdl3::keyboard::TextInputUtil

§

impl UnwindSafe for devela::_dep::sdl3::messagebox::MessageBoxButtonFlag

§

impl UnwindSafe for devela::_dep::sdl3::messagebox::MessageBoxColorScheme

§

impl UnwindSafe for devela::_dep::sdl3::messagebox::MessageBoxFlag

§

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

§

impl UnwindSafe for devela::_dep::sdl3::mouse::MouseState

§

impl UnwindSafe for devela::_dep::sdl3::mouse::MouseUtil

§

impl UnwindSafe for devela::_dep::sdl3::mouse::RelativeMouseState

§

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

§

impl UnwindSafe for devela::_dep::sdl3::pixels::Palette

§

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

§

impl UnwindSafe for devela::_dep::sdl3::pixels::PixelMasks

§

impl UnwindSafe for Properties

§

impl UnwindSafe for SDL_PropertyType

§

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

§

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

§

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

§

impl UnwindSafe for devela::_dep::sdl3::render::FPoint

§

impl UnwindSafe for devela::_dep::sdl3::render::FRect

§

impl UnwindSafe for InvalidTextureAccess

§

impl UnwindSafe for devela::_dep::sdl3::render::RendererInfo

§

impl UnwindSafe for devela::_dep::sdl3::render::TextureQuery

§

impl UnwindSafe for devela::_dep::sdl3::AudioSubsystem

§

impl UnwindSafe for CameraSubsystem

§

impl UnwindSafe for devela::_dep::sdl3::Error

§

impl UnwindSafe for devela::_dep::sdl3::EventPump

§

impl UnwindSafe for devela::_dep::sdl3::EventSubsystem

§

impl UnwindSafe for GamepadSubsystem

§

impl UnwindSafe for devela::_dep::sdl3::HapticSubsystem

§

impl UnwindSafe for devela::_dep::sdl3::JoystickSubsystem

§

impl UnwindSafe for devela::_dep::sdl3::Sdl

§

impl UnwindSafe for devela::_dep::sdl3::SensorSubsystem

§

impl UnwindSafe for devela::_dep::sdl3::VideoSubsystem

§

impl UnwindSafe for devela::_dep::sdl3::surface::SurfaceRef

§

impl UnwindSafe for devela::_dep::sdl3::sys::assert::SDL_AssertData

§

impl UnwindSafe for devela::_dep::sdl3::sys::assert::SDL_AssertState

§

impl UnwindSafe for SDL_AsyncIO

§

impl UnwindSafe for SDL_AsyncIOOutcome

§

impl UnwindSafe for SDL_AsyncIOQueue

§

impl UnwindSafe for SDL_AsyncIOResult

§

impl UnwindSafe for SDL_AsyncIOTaskType

§

impl UnwindSafe for SDL_AtomicInt

§

impl UnwindSafe for SDL_AtomicU32

§

impl UnwindSafe for SDL_AudioFormat

§

impl UnwindSafe for devela::_dep::sdl3::sys::audio::SDL_AudioSpec

§

impl UnwindSafe for SDL_AudioStream

§

impl UnwindSafe for devela::_dep::sdl3::sys::blendmode::SDL_BlendFactor

§

impl UnwindSafe for devela::_dep::sdl3::sys::blendmode::SDL_BlendOperation

§

impl UnwindSafe for SDL_Camera

§

impl UnwindSafe for SDL_CameraPosition

§

impl UnwindSafe for SDL_CameraSpec

§

impl UnwindSafe for SDL_DialogFileFilter

§

impl UnwindSafe for SDL_FileDialogType

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_AudioDeviceEvent

§

impl UnwindSafe for SDL_CameraDeviceEvent

§

impl UnwindSafe for SDL_ClipboardEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_CommonEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_DisplayEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_DropEvent

§

impl UnwindSafe for SDL_EventAction

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_EventType

§

impl UnwindSafe for SDL_GamepadAxisEvent

§

impl UnwindSafe for SDL_GamepadButtonEvent

§

impl UnwindSafe for SDL_GamepadDeviceEvent

§

impl UnwindSafe for SDL_GamepadSensorEvent

§

impl UnwindSafe for SDL_GamepadTouchpadEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_JoyAxisEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_JoyBallEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_JoyBatteryEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_JoyButtonEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_JoyDeviceEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_JoyHatEvent

§

impl UnwindSafe for SDL_KeyboardDeviceEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_KeyboardEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_MouseButtonEvent

§

impl UnwindSafe for SDL_MouseDeviceEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_MouseMotionEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_MouseWheelEvent

§

impl UnwindSafe for SDL_PenAxisEvent

§

impl UnwindSafe for SDL_PenButtonEvent

§

impl UnwindSafe for SDL_PenMotionEvent

§

impl UnwindSafe for SDL_PenProximityEvent

§

impl UnwindSafe for SDL_PenTouchEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_QuitEvent

§

impl UnwindSafe for SDL_RenderEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_SensorEvent

§

impl UnwindSafe for SDL_TextEditingCandidatesEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_TextEditingEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_TextInputEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_TouchFingerEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_UserEvent

§

impl UnwindSafe for devela::_dep::sdl3::sys::events::SDL_WindowEvent

§

impl UnwindSafe for SDL_PathInfo

§

impl UnwindSafe for SDL_Gamepad

§

impl UnwindSafe for SDL_GamepadAxis

§

impl UnwindSafe for SDL_GamepadBinding

§

impl UnwindSafe for SDL_GamepadBindingType

§

impl UnwindSafe for SDL_GamepadBinding__AnonUnion1__AnonStruct1

§

impl UnwindSafe for SDL_GamepadBinding__AnonUnion1__AnonStruct2

§

impl UnwindSafe for SDL_GamepadBinding__AnonUnion2__AnonStruct1

§

impl UnwindSafe for SDL_GamepadButton

§

impl UnwindSafe for SDL_GamepadButtonLabel

§

impl UnwindSafe for SDL_GamepadType

§

impl UnwindSafe for SDL_GPUBlendFactor

§

impl UnwindSafe for SDL_GPUBlendOp

§

impl UnwindSafe for SDL_GPUBlitInfo

§

impl UnwindSafe for SDL_GPUBlitRegion

§

impl UnwindSafe for SDL_GPUBuffer

§

impl UnwindSafe for SDL_GPUBufferBinding

§

impl UnwindSafe for SDL_GPUBufferCreateInfo

§

impl UnwindSafe for SDL_GPUBufferLocation

§

impl UnwindSafe for SDL_GPUBufferRegion

§

impl UnwindSafe for SDL_GPUColorTargetBlendState

§

impl UnwindSafe for SDL_GPUColorTargetDescription

§

impl UnwindSafe for SDL_GPUColorTargetInfo

§

impl UnwindSafe for SDL_GPUCommandBuffer

§

impl UnwindSafe for SDL_GPUCompareOp

§

impl UnwindSafe for SDL_GPUComputePass

§

impl UnwindSafe for SDL_GPUComputePipeline

§

impl UnwindSafe for SDL_GPUComputePipelineCreateInfo

§

impl UnwindSafe for SDL_GPUCopyPass

§

impl UnwindSafe for SDL_GPUCubeMapFace

§

impl UnwindSafe for SDL_GPUCullMode

§

impl UnwindSafe for SDL_GPUDepthStencilState

§

impl UnwindSafe for SDL_GPUDepthStencilTargetInfo

§

impl UnwindSafe for SDL_GPUDevice

§

impl UnwindSafe for SDL_GPUFence

§

impl UnwindSafe for SDL_GPUFillMode

§

impl UnwindSafe for SDL_GPUFilter

§

impl UnwindSafe for SDL_GPUFrontFace

§

impl UnwindSafe for SDL_GPUGraphicsPipeline

§

impl UnwindSafe for SDL_GPUGraphicsPipelineCreateInfo

§

impl UnwindSafe for SDL_GPUGraphicsPipelineTargetInfo

§

impl UnwindSafe for SDL_GPUIndexElementSize

§

impl UnwindSafe for SDL_GPUIndexedIndirectDrawCommand

§

impl UnwindSafe for SDL_GPUIndirectDispatchCommand

§

impl UnwindSafe for SDL_GPUIndirectDrawCommand

§

impl UnwindSafe for SDL_GPULoadOp

§

impl UnwindSafe for SDL_GPUMultisampleState

§

impl UnwindSafe for SDL_GPUPresentMode

§

impl UnwindSafe for SDL_GPUPrimitiveType

§

impl UnwindSafe for SDL_GPURasterizerState

§

impl UnwindSafe for SDL_GPURenderPass

§

impl UnwindSafe for SDL_GPUSampleCount

§

impl UnwindSafe for SDL_GPUSampler

§

impl UnwindSafe for SDL_GPUSamplerAddressMode

§

impl UnwindSafe for SDL_GPUSamplerCreateInfo

§

impl UnwindSafe for SDL_GPUSamplerMipmapMode

§

impl UnwindSafe for SDL_GPUShader

§

impl UnwindSafe for SDL_GPUShaderCreateInfo

§

impl UnwindSafe for SDL_GPUShaderStage

§

impl UnwindSafe for SDL_GPUStencilOp

§

impl UnwindSafe for SDL_GPUStencilOpState

§

impl UnwindSafe for SDL_GPUStorageBufferReadWriteBinding

§

impl UnwindSafe for SDL_GPUStorageTextureReadWriteBinding

§

impl UnwindSafe for SDL_GPUStoreOp

§

impl UnwindSafe for SDL_GPUSwapchainComposition

§

impl UnwindSafe for SDL_GPUTexture

§

impl UnwindSafe for SDL_GPUTextureCreateInfo

§

impl UnwindSafe for SDL_GPUTextureFormat

§

impl UnwindSafe for SDL_GPUTextureLocation

§

impl UnwindSafe for SDL_GPUTextureRegion

§

impl UnwindSafe for SDL_GPUTextureSamplerBinding

§

impl UnwindSafe for SDL_GPUTextureTransferInfo

§

impl UnwindSafe for SDL_GPUTextureType

§

impl UnwindSafe for SDL_GPUTransferBuffer

§

impl UnwindSafe for SDL_GPUTransferBufferCreateInfo

§

impl UnwindSafe for SDL_GPUTransferBufferLocation

§

impl UnwindSafe for SDL_GPUTransferBufferUsage

§

impl UnwindSafe for SDL_GPUVertexAttribute

§

impl UnwindSafe for SDL_GPUVertexBufferDescription

§

impl UnwindSafe for SDL_GPUVertexElementFormat

§

impl UnwindSafe for SDL_GPUVertexInputRate

§

impl UnwindSafe for SDL_GPUVertexInputState

§

impl UnwindSafe for SDL_GPUViewport

§

impl UnwindSafe for devela::_dep::sdl3::sys::guid::SDL_GUID

§

impl UnwindSafe for SDL_Haptic

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticCondition

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticConstant

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticCustom

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticDirection

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticLeftRight

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticPeriodic

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticRamp

§

impl UnwindSafe for SDL_hid_bus_type

§

impl UnwindSafe for SDL_hid_device

§

impl UnwindSafe for devela::_dep::sdl3::sys::hidapi::SDL_hid_device_info

§

impl UnwindSafe for devela::_dep::sdl3::sys::hints::SDL_HintPriority

§

impl UnwindSafe for SDL_AppResult

§

impl UnwindSafe for SDL_IOStatus

§

impl UnwindSafe for SDL_IOStream

§

impl UnwindSafe for SDL_IOStreamInterface

§

impl UnwindSafe for SDL_IOWhence

§

impl UnwindSafe for SDL_Joystick

§

impl UnwindSafe for SDL_JoystickConnectionState

§

impl UnwindSafe for devela::_dep::sdl3::sys::joystick::SDL_JoystickType

§

impl UnwindSafe for devela::_dep::sdl3::sys::joystick::SDL_VirtualJoystickDesc

§

impl UnwindSafe for SDL_VirtualJoystickSensorDesc

§

impl UnwindSafe for SDL_VirtualJoystickTouchpadDesc

§

impl UnwindSafe for SDL_Capitalization

§

impl UnwindSafe for SDL_TextInputType

§

impl UnwindSafe for SDL_SharedObject

§

impl UnwindSafe for devela::_dep::sdl3::sys::locale::SDL_Locale

§

impl UnwindSafe for devela::_dep::sdl3::sys::log::SDL_LogCategory

§

impl UnwindSafe for devela::_dep::sdl3::sys::log::SDL_LogPriority

§

impl UnwindSafe for devela::_dep::sdl3::sys::messagebox::SDL_MessageBoxButtonData

§

impl UnwindSafe for devela::_dep::sdl3::sys::messagebox::SDL_MessageBoxColor

§

impl UnwindSafe for devela::_dep::sdl3::sys::messagebox::SDL_MessageBoxColorScheme

§

impl UnwindSafe for devela::_dep::sdl3::sys::messagebox::SDL_MessageBoxColorType

§

impl UnwindSafe for devela::_dep::sdl3::sys::messagebox::SDL_MessageBoxData

§

impl UnwindSafe for devela::_dep::sdl3::sys::mouse::SDL_Cursor

§

impl UnwindSafe for devela::_dep::sdl3::sys::mouse::SDL_MouseWheelDirection

§

impl UnwindSafe for devela::_dep::sdl3::sys::mouse::SDL_SystemCursor

§

impl UnwindSafe for SDL_Condition

§

impl UnwindSafe for SDL_InitState

§

impl UnwindSafe for SDL_InitStatus

§

impl UnwindSafe for SDL_Mutex

§

impl UnwindSafe for SDL_RWLock

§

impl UnwindSafe for SDL_Semaphore

§

impl UnwindSafe for SDL_PenAxis

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_ArrayOrder

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_BitmapOrder

§

impl UnwindSafe for SDL_ChromaLocation

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_Color

§

impl UnwindSafe for SDL_ColorPrimaries

§

impl UnwindSafe for SDL_ColorRange

§

impl UnwindSafe for SDL_ColorType

§

impl UnwindSafe for SDL_Colorspace

§

impl UnwindSafe for SDL_FColor

§

impl UnwindSafe for SDL_MatrixCoefficients

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_PackedLayout

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_PackedOrder

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_Palette

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_PixelFormat

§

impl UnwindSafe for SDL_PixelFormatDetails

§

impl UnwindSafe for devela::_dep::sdl3::sys::pixels::SDL_PixelType

§

impl UnwindSafe for SDL_TransferCharacteristics

§

impl UnwindSafe for devela::_dep::sdl3::sys::power::SDL_PowerState

§

impl UnwindSafe for SDL_Process

§

impl UnwindSafe for SDL_ProcessIO

§

impl UnwindSafe for devela::_dep::sdl3::sys::rect::SDL_FPoint

§

impl UnwindSafe for devela::_dep::sdl3::sys::rect::SDL_FRect

§

impl UnwindSafe for devela::_dep::sdl3::sys::rect::SDL_Point

§

impl UnwindSafe for devela::_dep::sdl3::sys::rect::SDL_Rect

§

impl UnwindSafe for devela::_dep::sdl3::sys::render::SDL_Renderer

§

impl UnwindSafe for SDL_RendererLogicalPresentation

§

impl UnwindSafe for devela::_dep::sdl3::sys::render::SDL_Texture

§

impl UnwindSafe for devela::_dep::sdl3::sys::render::SDL_TextureAccess

§

impl UnwindSafe for devela::_dep::sdl3::sys::render::SDL_Vertex

§

impl UnwindSafe for devela::_dep::sdl3::sys::scancode::SDL_Scancode

§

impl UnwindSafe for SDL_Sensor

§

impl UnwindSafe for devela::_dep::sdl3::sys::sensor::SDL_SensorType

§

impl UnwindSafe for SDL_Environment

§

impl UnwindSafe for SDL_iconv_data_t

§

impl UnwindSafe for SDL_Storage

§

impl UnwindSafe for SDL_StorageInterface

§

impl UnwindSafe for SDL_FlipMode

§

impl UnwindSafe for devela::_dep::sdl3::sys::surface::SDL_ScaleMode

§

impl UnwindSafe for devela::_dep::sdl3::sys::surface::SDL_Surface

§

impl UnwindSafe for SDL_Sandbox

§

impl UnwindSafe for devela::_dep::sdl3::sys::thread::SDL_Thread

§

impl UnwindSafe for devela::_dep::sdl3::sys::thread::SDL_ThreadPriority

§

impl UnwindSafe for SDL_ThreadState

§

impl UnwindSafe for SDL_DateFormat

§

impl UnwindSafe for SDL_DateTime

§

impl UnwindSafe for SDL_TimeFormat

§

impl UnwindSafe for devela::_dep::sdl3::sys::touch::SDL_Finger

§

impl UnwindSafe for devela::_dep::sdl3::sys::touch::SDL_TouchDeviceType

§

impl UnwindSafe for SDL_Tray

§

impl UnwindSafe for SDL_TrayEntry

§

impl UnwindSafe for SDL_TrayMenu

§

impl UnwindSafe for devela::_dep::sdl3::sys::video::SDL_DisplayMode

§

impl UnwindSafe for SDL_DisplayModeData

§

impl UnwindSafe for devela::_dep::sdl3::sys::video::SDL_DisplayOrientation

§

impl UnwindSafe for devela::_dep::sdl3::sys::video::SDL_FlashOperation

§

impl UnwindSafe for SDL_GLAttr

§

impl UnwindSafe for SDL_GLContextState

§

impl UnwindSafe for devela::_dep::sdl3::sys::video::SDL_HitTestResult

§

impl UnwindSafe for SDL_SystemTheme

§

impl UnwindSafe for devela::_dep::sdl3::sys::video::SDL_Window

§

impl UnwindSafe for VkAllocationCallbacks

§

impl UnwindSafe for TouchId

§

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

§

impl UnwindSafe for devela::_dep::sdl3::video::gl_attr::ContextFlags

§

impl UnwindSafe for devela::_dep::sdl3::video::Display

§

impl UnwindSafe for devela::_dep::sdl3::video::DisplayMode

§

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

§

impl UnwindSafe for devela::_dep::sdl3::video::GLContext

§

impl UnwindSafe for PopupWindowBuilder

§

impl UnwindSafe for devela::_dep::sdl3::video::Window

§

impl UnwindSafe for devela::_dep::sdl3::video::WindowBuilder

§

impl UnwindSafe for devela::_dep::sdl3::video::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 CodecDescriptor

§

impl UnwindSafe for CodecParameters

§

impl UnwindSafe for CodecRegistry

§

impl UnwindSafe for CodecType

§

impl UnwindSafe for DecoderOptions

§

impl UnwindSafe for FinalizeResult

§

impl UnwindSafe for RandomNoise

§

impl UnwindSafe for Complex

§

impl UnwindSafe for Fft

§

impl UnwindSafe for Imdct

§

impl UnwindSafe for Cue

§

impl UnwindSafe for CuePoint

§

impl UnwindSafe for FormatOptions

§

impl UnwindSafe for Packet

§

impl UnwindSafe for SeekedTo

§

impl UnwindSafe for Track

§

impl UnwindSafe for SeekIndex

§

impl UnwindSafe for SeekPoint

§

impl UnwindSafe for MediaSourceStreamOptions

§

impl UnwindSafe for CodebookBuilder

§

impl UnwindSafe for Entry8x8

§

impl UnwindSafe for Entry8x16

§

impl UnwindSafe for Entry8x32

§

impl UnwindSafe for Entry16x8

§

impl UnwindSafe for Entry16x16

§

impl UnwindSafe for Entry16x32

§

impl UnwindSafe for Entry32x8

§

impl UnwindSafe for Entry32x16

§

impl UnwindSafe for Entry32x32

§

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

§

impl UnwindSafe for MetadataLog

§

impl UnwindSafe for MetadataOptions

§

impl UnwindSafe for MetadataRevision

§

impl UnwindSafe for Size

§

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

§

impl UnwindSafe for VendorData

§

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

§

impl UnwindSafe for 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 devela::_dep::sysinfo::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 NetworkData

§

impl UnwindSafe for Networks

§

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

§

impl UnwindSafe for Process

§

impl UnwindSafe for ProcessRefreshKind

§

impl UnwindSafe for RefreshKind

§

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

§

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

§

impl UnwindSafe for User

§

impl UnwindSafe for Users

§

impl UnwindSafe for OutputDeviceParameters

§

impl UnwindSafe for DuplexStream

§

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

§

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

§

impl UnwindSafe for SimplexStream

§

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

§

impl UnwindSafe for 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 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 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 InternalString

§

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

§

impl UnwindSafe for RawString

§

impl UnwindSafe for Repr

§

impl UnwindSafe for devela::_dep::toml_edit::Table

§

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

§

impl UnwindSafe for TomlError

§

impl UnwindSafe for SetGlobalDefaultError

§

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

§

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

§

impl UnwindSafe for ParseLevelFilterError

§

impl UnwindSafe for Kind

§

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

§

impl UnwindSafe for devela::_dep::tracing::Id

§

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

§

impl UnwindSafe for Interest

§

impl UnwindSafe for NoSubscriber

§

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 devela::_dep::ureq::http::uri::Scheme

§

impl UnwindSafe for BodyBuilder

§

impl UnwindSafe for devela::_dep::ureq::Proxy

§

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 WasmSlice

§

impl UnwindSafe for JsError

§

impl UnwindSafe for JsValue

§

impl UnwindSafe for f32x4

§

impl UnwindSafe for f32x8

§

impl UnwindSafe for f64x2

§

impl UnwindSafe for f64x4

§

impl UnwindSafe for i8x16

§

impl UnwindSafe for i8x32

§

impl UnwindSafe for i16x8

§

impl UnwindSafe for i16x16

§

impl UnwindSafe for i32x4

§

impl UnwindSafe for i32x8

§

impl UnwindSafe for i64x2

§

impl UnwindSafe for i64x4

§

impl UnwindSafe for u8x16

§

impl UnwindSafe for u16x8

§

impl UnwindSafe for u16x16

§

impl UnwindSafe for u32x4

§

impl UnwindSafe for u32x8

§

impl UnwindSafe for u64x2

§

impl UnwindSafe for u64x4

§

impl UnwindSafe for 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 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 ByteSearch

§

impl UnwindSafe for devela::all::CStr

§

impl UnwindSafe for devela::all::CString

§

impl UnwindSafe for CodecFlags

§

impl UnwindSafe for CodecLen

§

impl UnwindSafe for devela::all::Color

§

impl UnwindSafe for Crockford

§

impl UnwindSafe for CrosstermService

§

impl UnwindSafe for DataOverflow

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for devela::all::DirEntry

§

impl UnwindSafe for DrumFrame8

§

impl UnwindSafe for devela::all::Duration

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for ElementNotFound

§

impl UnwindSafe for Env

§

impl UnwindSafe for FailedErrorConversion

§

impl UnwindSafe for devela::all::False

§

impl UnwindSafe for FatPtr

§

impl UnwindSafe for devela::all::File

§

impl UnwindSafe for devela::all::FileMetadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for FileTimes

§

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

§

impl UnwindSafe for LINUX_ERRNO

§

impl UnwindSafe for LINUX_FILENO

§

impl UnwindSafe for LINUX_IOCTL

§

impl UnwindSafe for LINUX_SIGACTION

§

impl UnwindSafe for LINUX_SIGNAL

§

impl UnwindSafe for LINUX_SYS_AARCH64

§

impl UnwindSafe for LINUX_SYS_ARM

§

impl UnwindSafe for LINUX_SYS_RISCV

§

impl UnwindSafe for LINUX_SYS_X86

§

impl UnwindSafe for LINUX_SYS_X86_64

§

impl UnwindSafe for LINUX_TERMIOS_CFLAG

§

impl UnwindSafe for LINUX_TERMIOS_IFLAG

§

impl UnwindSafe for LINUX_TERMIOS_LFLAG

§

impl UnwindSafe for LINUX_TERMIOS_OFLAG

§

impl UnwindSafe for Lgc16

§

impl UnwindSafe for LinuxSigaction

§

impl UnwindSafe for LinuxSigset

§

impl UnwindSafe for LinuxTerminal

§

impl UnwindSafe for LinuxTerminalSize

§

impl UnwindSafe for LinuxTermios

§

impl UnwindSafe for LinuxTimespec

§

impl UnwindSafe for Log

§

impl UnwindSafe for LogConfig

§

impl UnwindSafe for SetLoggerError

§

impl UnwindSafe for Maybe

§

impl UnwindSafe for Mem

§

impl UnwindSafe for devela::all::MemLayout

§

impl UnwindSafe for devela::all::MemLayoutError

§

impl UnwindSafe for MiniquadWindow

§

impl UnwindSafe for MismatchedCapacity

§

impl UnwindSafe for MismatchedDimensions

§

impl UnwindSafe for MismatchedIndices

§

impl UnwindSafe for NodeEmpty

§

impl UnwindSafe for NodeLinkNotSet

§

impl UnwindSafe for NodeLinkNotUnique

§

impl UnwindSafe for NotEnoughElements

§

impl UnwindSafe for NotEnoughSpace

§

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

§

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 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::True

§

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

§

impl UnwindSafe for WaveletUnitVec

§

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 bpf_attr_getid_id_t

§

impl UnwindSafe for bpf_attr_t

§

impl UnwindSafe for bpf_fib_lookup_addr_t

§

impl UnwindSafe for bpf_fib_lookup_inputs_t

§

impl UnwindSafe for bpf_flow_keys_addr_t

§

impl UnwindSafe for bpf_md_end_ptr_t

§

impl UnwindSafe for bpf_md_ptr_t

§

impl UnwindSafe for bpf_sock_ops_reply_t

§

impl UnwindSafe for bpf_sock_tuple_t

§

impl UnwindSafe for epoll_data_t

§

impl UnwindSafe for in6_un_t

§

impl UnwindSafe for io_uring_sqe_buf_addr_t

§

impl UnwindSafe for io_uring_sqe_buf_group_t

§

impl UnwindSafe for io_uring_sqe_file_off_t

§

impl UnwindSafe for io_uring_sqe_opt_buf_t

§

impl UnwindSafe for io_uring_sqe_other_flags_t

§

impl UnwindSafe for perf_event_attr_config1_t

§

impl UnwindSafe for perf_event_attr_config2_t

§

impl UnwindSafe for perf_event_attr_sample_t

§

impl UnwindSafe for perf_event_attr_wakeup_t

§

impl UnwindSafe for perf_event_mmap_page_cap_t

§

impl UnwindSafe for perf_mem_data_src_t

§

impl UnwindSafe for ptrace_syscall_info_seccomp_t

§

impl UnwindSafe for rseq_cs_union_t

§

impl UnwindSafe for semun_t

§

impl UnwindSafe for sifields_t

§

impl UnwindSafe for sigev_un_t

§

impl UnwindSafe for devela::_dep::nc::siginfo_t

§

impl UnwindSafe for sigval_t

§

impl UnwindSafe for PyMethodDefPointer

§

impl UnwindSafe for PyUnicodeObjectData

§

impl UnwindSafe for EventData

§

impl UnwindSafe for addr3_or_cmd_union

§

impl UnwindSafe for addr_or_splice_off_in_union

§

impl UnwindSafe for buf_union

§

impl UnwindSafe for io_uring_user_data

§

impl UnwindSafe for ioprio_union

§

impl UnwindSafe for len_union

§

impl UnwindSafe for off_or_addr2_union

§

impl UnwindSafe for op_flags_union

§

impl UnwindSafe for register_or_sqe_op_or_sqe_flags_union

§

impl UnwindSafe for splice_fd_in_or_file_index_union

§

impl UnwindSafe for __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 devela::_dep::sdl2::sys::SDL_Event

§

impl UnwindSafe for SDL_GameControllerButtonBind__bindgen_ty_1

§

impl UnwindSafe for devela::_dep::sdl2::sys::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 _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 devela::_dep::sdl3::sys::events::SDL_Event

§

impl UnwindSafe for SDL_GamepadBinding__AnonUnion1

§

impl UnwindSafe for SDL_GamepadBinding__AnonUnion2

§

impl UnwindSafe for devela::_dep::sdl3::sys::haptic::SDL_HapticEffect

§

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 Decoded

§

impl UnwindSafe for Deprecation

§

impl UnwindSafe for DictVarkeywords

§

impl UnwindSafe for False

§

impl UnwindSafe for FmtSpec

§

impl UnwindSafe for Fork

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for FunctionDescription

§

impl UnwindSafe for HashCallbackOutput

§

impl UnwindSafe for How

§

impl UnwindSafe for I32NotAllOnes

§

impl UnwindSafe for I64NotAllOnes

§

impl UnwindSafe for IPowModulo

§

impl UnwindSafe for ImportedExceptionTypeObject

§

impl UnwindSafe for IterBaseTag

§

impl UnwindSafe for IterOptionTag

§

impl UnwindSafe for IterResultOptionTag

§

impl UnwindSafe for KeywordOnlyParameterDescription

§

impl UnwindSafe for MaybeRuntimePyMethodDef

§

impl UnwindSafe for ModuleDef

§

impl UnwindSafe for ModuleInitializer

§

impl UnwindSafe for MustAbort

§

impl UnwindSafe for Nanoseconds

§

impl UnwindSafe for NoVarargs

§

impl UnwindSafe for NoVarkeywords

§

impl UnwindSafe for NonZeroI8Inner

§

impl UnwindSafe for NonZeroI16Inner

§

impl UnwindSafe for NonZeroI32Inner

§

impl UnwindSafe for NonZeroI64Inner

§

impl UnwindSafe for NonZeroI128Inner

§

impl UnwindSafe for NonZeroIsizeInner

§

impl UnwindSafe for NonZeroU8Inner

§

impl UnwindSafe for NonZeroU16Inner

§

impl UnwindSafe for NonZeroU32Inner

§

impl UnwindSafe for NonZeroU64Inner

§

impl UnwindSafe for NonZeroU128Inner

§

impl UnwindSafe for NonZeroUsizeInner

§

impl UnwindSafe for Number

§

impl UnwindSafe for PanicTrap

§

impl UnwindSafe for PyClassAttributeDef

§

impl UnwindSafe for PyClassDictSlot

§

impl UnwindSafe for PyClassDummySlot

§

impl UnwindSafe for PyClassItems

§

impl UnwindSafe for PyClassItemsIter

§

impl UnwindSafe for PyClassWeakRefSlot

§

impl UnwindSafe for PyGetterDef

§

impl UnwindSafe for PyMethodDef

§

impl UnwindSafe for PyMethodDefType

§

impl UnwindSafe for PyMethodType

§

impl UnwindSafe for PyObjectFreeList

§

impl UnwindSafe for PySetterDef

§

impl UnwindSafe for Sign

§

impl UnwindSafe for StartupTlsInfo

§

impl UnwindSafe for TagContentOtherField

§

impl UnwindSafe for TagContentOtherFieldVisitor

§

impl UnwindSafe for TagOrContentField

§

impl UnwindSafe for TagOrContentFieldVisitor

§

impl UnwindSafe for True

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

impl UnwindSafe for TupleVarargs

§

impl UnwindSafe for U32NotAllOnes

§

impl UnwindSafe for U64NotAllOnes

§

impl UnwindSafe for UsizeNoHighBit

§

impl UnwindSafe for Utf8Encoder

§

impl UnwindSafe for Utf16Encoder

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for devela::_dep::sdl2::video::WindowSurfaceRef<'a>

§

impl<'a> !UnwindSafe for devela::_dep::sdl3::video::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 ValueSet<'a>

§

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

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for 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 Utf8Pattern<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for devela::_dep::sdl3::messagebox::ClickedButton<'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 BuffRow<'a>

§

impl<'a> UnwindSafe for BuffRowIter<'a>

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for devela::_dep::js_sys::Iter<'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 devela::_dep::rustix::event::epoll::Iter<'a>

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for devela::_dep::sdl2::event::EventPollIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::event::EventWaitIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::event::EventWaitTimeoutIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::keyboard::KeyboardState<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::keyboard::ScancodeIterator<'a>

§

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

§

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

§

impl<'a> UnwindSafe for devela::_dep::sdl2::mouse::MouseButtonIterator<'a>

§

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

§

impl<'a> UnwindSafe for devela::_dep::sdl2::surface::Surface<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::surface::SurfaceContext<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::video::gl_attr::ContextFlagsBuilder<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl2::video::gl_attr::GLAttr<'a>

§

impl<'a> UnwindSafe for DialogFileFilter<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::event::EventPollIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::event::EventWaitIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::event::EventWaitTimeoutIterator<'a>

§

impl<'a> UnwindSafe for GlobResults<'a>

§

impl<'a> UnwindSafe for GlobResultsIter<'a>

§

impl<'a> UnwindSafe for BufferBuilder<'a>

§

impl<'a> UnwindSafe for ComputePipelineBuilder<'a>

§

impl<'a> UnwindSafe for GraphicsPipelineBuilder<'a>

§

impl<'a> UnwindSafe for ShaderBuilder<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::gpu::Texture<'a>

§

impl<'a> UnwindSafe for TransferBufferBuilder<'a>

§

impl<'a> UnwindSafe for IOStream<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::keyboard::KeyboardState<'a>

§

impl<'a> UnwindSafe for PressedScancodeIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::keyboard::ScancodeIterator<'a>

§

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

§

impl<'a> UnwindSafe for devela::_dep::sdl3::mouse::MouseButtonIterator<'a>

§

impl<'a> UnwindSafe for PressedMouseButtonIterator<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::surface::Surface<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::surface::SurfaceContext<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::video::gl_attr::ContextFlagsBuilder<'a>

§

impl<'a> UnwindSafe for devela::_dep::sdl3::video::gl_attr::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 devela::all::LogRecord<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for UntaggedUnitVisitor<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, 'b, T> UnwindSafe for ExampleEnum<'a, 'b, T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, 'f> !UnwindSafe for devela::_core::ffi::VaList<'a, 'f>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, CB> !UnwindSafe for AudioDeviceLockGuard<'a, CB>

§

impl<'a, CB> UnwindSafe for devela::_dep::sdl2::event::EventWatch<'a, CB>

§

impl<'a, CB> UnwindSafe for devela::_dep::sdl3::event::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, 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::_alloc::collections::btree_map::ExtractIf<'a, K, V, F, A>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, K, V, S, A = Global> !UnwindSafe for devela::_dep::hashbrown::hash_map::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 devela::_dep::hashbrown::hash_map::RawEntryBuilderMut<'a, K, V, S, A>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, P> !UnwindSafe for 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::result::IterMut<'a, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> !UnwindSafe for 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 InPlaceSeed<'a, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> UnwindSafe for devela::_dep::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 BufferMemMap<'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::MutexGuard<'a, T>
where T: ?Sized,

§

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 devela::_dep::hashbrown::hash_table::Entry<'a, T, A>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, 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 N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, 'a> !UnwindSafe for devela::_dep::sdl2::timer::Timer<'b, 'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'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 AncillaryIter<'data, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'f, 'text> UnwindSafe for PartialRendering<'f, 'text>

§

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

§

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 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 devela::_dep::sdl2::render::Texture<'r>

§

impl<'r> UnwindSafe for devela::_dep::sdl3::render::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<'slice, 'fd> UnwindSafe for SendAncillaryMessage<'slice, 'fd>

§

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 devela::_core::option::IntoIter<A>
where A: UnwindSafe,

§

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

§

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

§

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

§

impl<A> UnwindSafe for devela::_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, 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<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<CB> UnwindSafe for devela::_dep::sdl2::audio::AudioDevice<CB>
where CB: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<Dyn> !UnwindSafe for 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 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, 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 <I2 as Iterator>::Item: Sized + UnwindSafe, <I1 as Iterator>::Item: Sized + UnwindSafe, 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 Amplify<I>
where I: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I> 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, D> UnwindSafe for SamplesConverter<I, D>
where I: UnwindSafe, D: UnwindSafe,

§

impl<I, D> UnwindSafe for UniformSourceIterator<I, D>

§

impl<I, E> UnwindSafe for SeqDeserializer<I, E>
where E: UnwindSafe, I: UnwindSafe,

§

impl<I, E> UnwindSafe for ParseError<I, E>
where I: UnwindSafe, E: UnwindSafe,

§

impl<I, 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 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, 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 devela::_core::iter::ArrayChunks<I, N>
where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<Idx> UnwindSafe for devela::_core::range::Range<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for devela::_core::range::RangeFrom<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for devela::_core::range::RangeInclusive<Idx>
where Idx: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

impl<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, 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<Opcode> UnwindSafe for IntegerSetter<Opcode>
where Opcode: UnwindSafe,

§

impl<Opcode> UnwindSafe for NoArg<Opcode>
where Opcode: UnwindSafe,

§

impl<Opcode, Input> UnwindSafe for Setter<Opcode, Input>
where Input: UnwindSafe, Opcode: UnwindSafe,

§

impl<Opcode, Output> UnwindSafe for Getter<Opcode, Output>
where Opcode: UnwindSafe, Output: UnwindSafe,

§

impl<P, 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, 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 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 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 DynamicMixer<S>

§

impl<S> !UnwindSafe for SourcesQueueOutput<S>

§

impl<S> !UnwindSafe for EmptyCallback<S>

§

impl<S> !UnwindSafe for HttpCrateScope<S>

§

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

§

impl<S> UnwindSafe for DynamicMixerController<S>

§

impl<S> UnwindSafe for SourcesQueueInput<S>

§

impl<S> UnwindSafe for devela::_dep::rodio::source::Empty<S>
where S: UnwindSafe,

§

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

§

impl<S> UnwindSafe for StaticSamplesBuffer<S>
where S: RefUnwindSafe,

§

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

§

impl<S> UnwindSafe for RawSampleBuffer<S>

§

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

§

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

§

impl<S> UnwindSafe for ImDocument<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<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<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 Instrumented<T>

§

impl<T> !UnwindSafe for WithDispatch<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 RcRef<T>

§

impl<T> !UnwindSafe for RcRefMut<T>

§

impl<T> UnwindSafe for devela::_core::option::Option<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpmc::TrySendError<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 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 AsyncDropInPlace<T>
where <T as AsyncDestruct>::AsyncDestructor: UnwindSafe, T: ?Sized,

§

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 devela::_core::result::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_core::sync::atomic::AtomicPtr<T>
where T: RefUnwindSafe,

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::_std::sync::mpsc::IntoIter<T>

§

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

§

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

§

impl<T> UnwindSafe for SyncSender<T>

§

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

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::fltk::app::Receiver<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::fltk::app::Sender<T>
where T: UnwindSafe,

§

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

§

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

§

impl<T> UnwindSafe for devela::_dep::fltk::utils::oncelock::OnceCell<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 Rgb<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for devela::_dep::sdl2::render::RendererContext<T>
where T: RefUnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::sdl2::render::TextureCreator<T>
where T: RefUnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::sdl3::render::Canvas<T>

§

impl<T> UnwindSafe for devela::_dep::sdl3::render::RendererContext<T>
where T: RefUnwindSafe,

§

impl<T> UnwindSafe for devela::_dep::sdl3::render::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::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 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 DebugValue<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for DisplayValue<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 WasmRet<T>

§

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

§

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

§

impl<T> UnwindSafe for JsStatic<T>

§

impl<T> UnwindSafe for JsThreadLocal<T>

§

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

§

impl<T> UnwindSafe for 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 Tp<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 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 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::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 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 CheckSupportsConstructor<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for PyClassObject<T>
where <<T as PyClassImpl>::BaseType as PyClassBaseType>::LayoutAsBase: UnwindSafe, <<T as PyClassImpl>::PyClassMutability as PyClassMutability>::Storage: UnwindSafe, <T as PyClassImpl>::ThreadChecker: UnwindSafe, <T as PyClassImpl>::Dict: UnwindSafe, <T as PyClassImpl>::WeakRef: UnwindSafe, T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> 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 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::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 T: UnwindSafe, D: UnwindSafe,

§

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

§

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

§

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

§

impl<T, F> UnwindSafe for Lazy<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 devela::all::LazyCell<T, F>
where F: UnwindSafe, T: UnwindSafe,

§

impl<T, F> UnwindSafe for LazyCell<T, F>
where T: UnwindSafe, F: 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 Vector<T, D>
where T: UnwindSafe,

§

impl<T, const D: usize, const LEN: usize> UnwindSafe for Affine<T, D, LEN>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T, const N: usize> UnwindSafe for devela::_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<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 GROUP: u8, const NUM: u8, Data> UnwindSafe for NoneOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for ReadOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for ReadWriteOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for WriteOpcode<GROUP, NUM, Data>
where Data: UnwindSafe,

§

impl<const IMPLEMENTS_INTOPYOBJECT_REF: bool, const IMPLEMENTS_INTOPYOBJECT: bool> UnwindSafe for ConvertField<IMPLEMENTS_INTOPYOBJECT_REF, IMPLEMENTS_INTOPYOBJECT>

§

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

§

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

§

impl<const OPCODE: u32> UnwindSafe for BadOpcode<OPCODE>

§

impl<const 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 devela::_info::examples::niche::NonValueI8<V>

§

impl<const V: i8> UnwindSafe for devela::all::NonValueI8<V>

§

impl<const V: u8> UnwindSafe for NonValueU8<V>

§

impl<const V: u16> UnwindSafe for NonValueU16<V>