rustmax::std::panic

Trait UnwindSafe

1.9.0 · Source
pub auto trait UnwindSafe { }
Expand description

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

This trait is implemented by default for many types and behaves similarly in terms of inference of implementation to the Send and Sync traits. The purpose of this trait is to encode what types are safe to cross a catch_unwind boundary with no fear of unwind safety.

§What is unwind safety?

In Rust a function can “return” early if it either panics or calls a function which transitively panics. This sort of control flow is not always anticipated, and has the possibility of causing subtle bugs through a combination of two critical components:

  1. A data structure is in a temporarily invalid state when the thread panics.
  2. This broken invariant is then later observed.

Typically in Rust, it is difficult to perform step (2) because catching a panic involves either spawning a thread (which in turn makes it difficult to later witness broken invariants) or using the catch_unwind function in this module. Additionally, even if an invariant is witnessed, it typically isn’t a problem in Rust because there are no uninitialized values (like in C or C++).

It is possible, however, for logical invariants to be broken in Rust, which can end up causing behavioral bugs. Another key aspect of unwind safety in Rust is that, in the absence of unsafe code, a panic cannot lead to memory unsafety.

That was a bit of a whirlwind tour of unwind safety, but for more information about unwind safety and how it applies to Rust, see an associated RFC.

§What is UnwindSafe?

Now that we’ve got an idea of what unwind safety is in Rust, it’s also important to understand what this trait represents. As mentioned above, one way to witness broken invariants is through the catch_unwind function in this module as it allows catching a panic and then re-using the environment of the closure.

Simply put, a type T implements UnwindSafe if it cannot easily allow witnessing a broken invariant through the use of catch_unwind (catching a panic). This trait is an auto trait, so it is automatically implemented for many types, and it is also structurally composed (e.g., a struct is unwind safe if all of its components are unwind safe).

Note, however, that this is not an unsafe trait, so there is not a succinct contract that this trait is providing. Instead it is intended as more of a “speed bump” to alert users of catch_unwind that broken invariants may be witnessed and may need to be accounted for.

§Who implements UnwindSafe?

Types such as &mut T and &RefCell<T> are examples which are not unwind safe. The general idea is that any mutable state which can be shared across catch_unwind is not unwind safe by default. This is because it is very easy to witness a broken invariant outside of catch_unwind as the data is simply accessed as usual.

Types like &Mutex<T>, however, are unwind safe because they implement poisoning by default. They still allow witnessing a broken invariant, but they already provide their own “speed bumps” to do so.

§When should UnwindSafe be used?

It is not intended that most types or functions need to worry about this trait. It is only used as a bound on the catch_unwind function and as mentioned above, the lack of unsafe means it is mostly an advisory. The AssertUnwindSafe wrapper struct can be used to force this trait to be implemented for any closed over variables passed to catch_unwind.

Implementors§

Source§

impl UnwindSafe for CancellationToken

Source§

impl UnwindSafe for rustmax::anyhow::Error

Source§

impl UnwindSafe for Runtime

Source§

impl UnwindSafe for Notify

Source§

impl UnwindSafe for rustmax::tokio::task::AbortHandle

Source§

impl UnwindSafe for Shell

1.9.0 · Source§

impl UnwindSafe for rustmax::std::io::Stderr

1.9.0 · Source§

impl UnwindSafe for StderrLock<'_>

1.9.0 · Source§

impl UnwindSafe for rustmax::std::io::Stdout

1.9.0 · Source§

impl UnwindSafe for StdoutLock<'_>

1.9.0 · Source§

impl UnwindSafe for Condvar

1.59.0 · Source§

impl UnwindSafe for rustmax::std::sync::Once

Source§

impl<'a> UnwindSafe for ParseBuffer<'a>

1.64.0 · Source§

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

Source§

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

1.36.0 · Source§

impl<K, V, S> UnwindSafe for 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 once_cell::unsync::OnceCell<T>
where T: UnwindSafe,

Source§

impl<T> UnwindSafe for AtomicCell<T>

Source§

impl<T> UnwindSafe for rustmax::crossbeam::channel::Receiver<T>

Source§

impl<T> UnwindSafe for rustmax::crossbeam::channel::Sender<T>

Source§

impl<T> UnwindSafe for ArrayQueue<T>

Source§

impl<T> UnwindSafe for SegQueue<T>

Source§

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

Source§

impl<T> UnwindSafe for rustmax::tokio::task::JoinHandle<T>

1.28.0 · Source§

impl<T> UnwindSafe for NonZero<T>

1.25.0 · Source§

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

Source§

impl<T> UnwindSafe for rustmax::std::sync::mpmc::Receiver<T>

Source§

impl<T> UnwindSafe for rustmax::std::sync::mpmc::Sender<T>

1.9.0 · Source§

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

1.70.0 · Source§

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

Source§

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

1.9.0 · Source§

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

1.9.0 · Source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

1.9.0 · Source§

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

1.9.0 · Source§

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

1.80.0 · Source§

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

Auto implementors§

§

impl !UnwindSafe for BytesRejection

§

impl !UnwindSafe for ExtensionRejection

§

impl !UnwindSafe for FailedToBufferBody

§

impl !UnwindSafe for FormRejection

§

impl !UnwindSafe for JsonRejection

§

impl !UnwindSafe for QueryRejection

§

impl !UnwindSafe for RawFormRejection

§

impl !UnwindSafe for StringRejection

§

impl !UnwindSafe for rustmax::ctrlc::Error

§

impl !UnwindSafe for Target

§

impl !UnwindSafe for EventHandler

§

impl !UnwindSafe for ReadlineError

§

impl !UnwindSafe for rustmax::tera::ErrorKind

§

impl !UnwindSafe for rustmax::axum::body::Body

§

impl !UnwindSafe for BodyDataStream

§

impl !UnwindSafe for HandleErrorFuture

§

impl !UnwindSafe for FailedToDeserializeForm

§

impl !UnwindSafe for FailedToDeserializeFormBody

§

impl !UnwindSafe for FailedToDeserializeQueryString

§

impl !UnwindSafe for InvalidUtf8

§

impl !UnwindSafe for JsonDataError

§

impl !UnwindSafe for JsonSyntaxError

§

impl !UnwindSafe for LengthLimitError

§

impl !UnwindSafe for MissingExtension

§

impl !UnwindSafe for UnknownBodyError

§

impl !UnwindSafe for rustmax::axum::middleware::future::FromFnResponseFuture

§

impl !UnwindSafe for rustmax::axum::middleware::future::MapRequestResponseFuture

§

impl !UnwindSafe for rustmax::axum::middleware::future::MapResponseResponseFuture

§

impl !UnwindSafe for rustmax::axum::middleware::Next

§

impl !UnwindSafe for ErrorResponse

§

impl !UnwindSafe for ResponseParts

§

impl !UnwindSafe for InfallibleRouteFuture

§

impl !UnwindSafe for rustmax::axum::Error

§

impl !UnwindSafe for Bindings

§

impl !UnwindSafe for rustmax::bindgen::Builder

§

impl !UnwindSafe for ValueParser

§

impl !UnwindSafe for Arg

§

impl !UnwindSafe for ArgMatches

§

impl !UnwindSafe for rustmax::clap::Command

§

impl !UnwindSafe for Collector

§

impl !UnwindSafe for Guard

§

impl !UnwindSafe for LocalHandle

§

impl !UnwindSafe for rustmax::env_logger::fmt::Formatter

§

impl !UnwindSafe for rustmax::env_logger::Builder

§

impl !UnwindSafe for Logger

§

impl !UnwindSafe for LocalPool

§

impl !UnwindSafe for LocalSpawner

§

impl !UnwindSafe for rustmax::futures::prelude::stream::AbortHandle

§

impl !UnwindSafe for AbortRegistration

§

impl !UnwindSafe for rustmax::hyper::body::Incoming

§

impl !UnwindSafe for rustmax::hyper::http::request::Builder

§

impl !UnwindSafe for rustmax::hyper::http::request::Parts

§

impl !UnwindSafe for rustmax::hyper::http::response::Builder

§

impl !UnwindSafe for rustmax::hyper::http::response::Parts

§

impl !UnwindSafe for Extensions

§

impl !UnwindSafe for rustmax::hyper::server::conn::http1::Builder

§

impl !UnwindSafe for rustmax::hyper::Error

§

impl !UnwindSafe for rustmax::hyper::upgrade::Upgraded

§

impl !UnwindSafe for rustmax::jiff::Error

§

impl !UnwindSafe for rustmax::proptest::prelude::ProptestConfig

§

impl !UnwindSafe for TestRunner

§

impl !UnwindSafe for ThreadRng

§

impl !UnwindSafe for ThreadBuilder

§

impl !UnwindSafe for ThreadPool

§

impl !UnwindSafe for ThreadPoolBuildError

§

impl !UnwindSafe for rustmax::reqwest::blocking::Body

§

impl !UnwindSafe for rustmax::reqwest::blocking::Client

§

impl !UnwindSafe for rustmax::reqwest::blocking::ClientBuilder

§

impl !UnwindSafe for rustmax::reqwest::blocking::Request

§

impl !UnwindSafe for rustmax::reqwest::blocking::RequestBuilder

§

impl !UnwindSafe for rustmax::reqwest::blocking::Response

§

impl !UnwindSafe for Action

§

impl !UnwindSafe for Policy

§

impl !UnwindSafe for rustmax::reqwest::Body

§

impl !UnwindSafe for rustmax::reqwest::Client

§

impl !UnwindSafe for rustmax::reqwest::ClientBuilder

§

impl !UnwindSafe for rustmax::reqwest::Error

§

impl !UnwindSafe for Proxy

§

impl !UnwindSafe for rustmax::reqwest::Request

§

impl !UnwindSafe for rustmax::reqwest::RequestBuilder

§

impl !UnwindSafe for rustmax::reqwest::Response

§

impl !UnwindSafe for rustmax::reqwest::Upgraded

§

impl !UnwindSafe for rustmax::serde_json::Error

§

impl !UnwindSafe for PathPersistError

§

impl !UnwindSafe for rustmax::tera::Error

§

impl !UnwindSafe for Tera

§

impl !UnwindSafe for rustmax::tokio::fs::File

§

impl !UnwindSafe for rustmax::tokio::fs::ReadDir

§

impl !UnwindSafe for DuplexStream

§

impl !UnwindSafe for rustmax::tokio::process::Child

§

impl !UnwindSafe for rustmax::tokio::process::Command

§

impl !UnwindSafe for rustmax::tokio::runtime::Builder

§

impl !UnwindSafe for rustmax::tokio::runtime::Handle

§

impl !UnwindSafe for RuntimeMetrics

§

impl !UnwindSafe for Signal

§

impl !UnwindSafe for rustmax::tokio::sync::Barrier

§

impl !UnwindSafe for OwnedSemaphorePermit

§

impl !UnwindSafe for Semaphore

§

impl !UnwindSafe for JoinError

§

impl !UnwindSafe for LocalEnterGuard

§

impl !UnwindSafe for LocalSet

§

impl !UnwindSafe for Interval

§

impl !UnwindSafe for Sleep

§

impl !UnwindSafe for Discover

§

impl !UnwindSafe for ServiceError

§

impl !UnwindSafe for GlobalConcurrencyLimitLayer

§

impl !UnwindSafe for rustmax::walkdir::Error

§

impl !UnwindSafe for rustmax::walkdir::IntoIter

§

impl !UnwindSafe for WalkDir

§

impl !UnwindSafe for rustmax::xshell::Error

§

impl !UnwindSafe for rustmax::std::io::Error

§

impl !UnwindSafe for rustmax::std::process::Command

§

impl UnwindSafe for rustmax::axum::extract::path::ErrorKind

§

impl UnwindSafe for MatchedPathRejection

§

impl UnwindSafe for PathRejection

§

impl UnwindSafe for RawPathParamsRejection

§

impl UnwindSafe for PrintFmt

§

impl UnwindSafe for ParseAlphabetError

§

impl UnwindSafe for DecodePaddingMode

§

impl UnwindSafe for DecodeError

§

impl UnwindSafe for DecodeSliceError

§

impl UnwindSafe for EncodeSliceError

§

impl UnwindSafe for DeriveTrait

§

impl UnwindSafe for DiscoveredItem

§

impl UnwindSafe for EnumVariantCustomBehavior

§

impl UnwindSafe for EnumVariantValue

§

impl UnwindSafe for CanDerive

§

impl UnwindSafe for IntKind

§

impl UnwindSafe for ItemKind

§

impl UnwindSafe for MacroParsingBehavior

§

impl UnwindSafe for TypeKind

§

impl UnwindSafe for rustmax::bindgen::Abi

§

impl UnwindSafe for AliasVariation

§

impl UnwindSafe for BindgenError

§

impl UnwindSafe for EnumVariation

§

impl UnwindSafe for FieldVisibilityKind

§

impl UnwindSafe for rustmax::bindgen::Formatter

§

impl UnwindSafe for MacroTypeVariation

§

impl UnwindSafe for NonCopyUnionStyle

§

impl UnwindSafe for RustEdition

§

impl UnwindSafe for BigEndian

§

impl UnwindSafe for LittleEndian

§

impl UnwindSafe for VsVers

§

impl UnwindSafe for Month

§

impl UnwindSafe for RoundingError

§

impl UnwindSafe for SecondsFormat

§

impl UnwindSafe for rustmax::chrono::Weekday

§

impl UnwindSafe for Colons

§

impl UnwindSafe for Fixed

§

impl UnwindSafe for Numeric

§

impl UnwindSafe for OffsetPrecision

§

impl UnwindSafe for Pad

§

impl UnwindSafe for ParseErrorKind

§

impl UnwindSafe for ArgPredicate

§

impl UnwindSafe for ArgAction

§

impl UnwindSafe for rustmax::clap::ColorChoice

§

impl UnwindSafe for ValueHint

§

impl UnwindSafe for ContextKind

§

impl UnwindSafe for ContextValue

§

impl UnwindSafe for rustmax::clap::error::ErrorKind

§

impl UnwindSafe for MatchesError

§

impl UnwindSafe for ValueSource

§

impl UnwindSafe for rustmax::crossbeam::channel::RecvTimeoutError

§

impl UnwindSafe for rustmax::crossbeam::channel::TryRecvError

§

impl UnwindSafe for SignalType

§

impl UnwindSafe for Opaque

§

impl UnwindSafe for Trivial

§

impl UnwindSafe for BinaryError

§

impl UnwindSafe for TimestampPrecision

§

impl UnwindSafe for WriteStyle

§

impl UnwindSafe for AnsiColor

§

impl UnwindSafe for rustmax::env_logger::fmt::style::Color

§

impl UnwindSafe for PollNext

§

impl UnwindSafe for FromHexError

§

impl UnwindSafe for rustmax::itertools::Position

§

impl UnwindSafe for Era

§

impl UnwindSafe for rustmax::jiff::civil::Weekday

§

impl UnwindSafe for RoundMode

§

impl UnwindSafe for Unit

§

impl UnwindSafe for Designator

§

impl UnwindSafe for rustmax::jiff::fmt::friendly::Direction

§

impl UnwindSafe for FractionalUnit

§

impl UnwindSafe for rustmax::jiff::fmt::friendly::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 rustmax::json5::Error

§

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 rustmax::log::Level

§

impl UnwindSafe for LevelFilter

§

impl UnwindSafe for CompareResult

§

impl UnwindSafe for Needed

§

impl UnwindSafe for rustmax::nom::error::ErrorKind

§

impl UnwindSafe for Endianness

§

impl UnwindSafe for rustmax::num_bigint::Sign

§

impl UnwindSafe for rustmax::proc_macro2::Delimiter

§

impl UnwindSafe for rustmax::proc_macro2::Spacing

§

impl UnwindSafe for rustmax::proc_macro2::TokenTree

§

impl UnwindSafe for rustmax::proc_macro::Delimiter

§

impl UnwindSafe for rustmax::proc_macro::Level

§

impl UnwindSafe for rustmax::proc_macro::Spacing

§

impl UnwindSafe for rustmax::proc_macro::TokenTree

§

impl UnwindSafe for TestCaseError

§

impl UnwindSafe for rustmax::proptest::string::Error

§

impl UnwindSafe for FileFailurePersistence

§

impl UnwindSafe for RngAlgorithm

§

impl UnwindSafe for BernoulliError

§

impl UnwindSafe for rustmax::rand::distr::uniform::Error

§

impl UnwindSafe for rustmax::rand::seq::WeightError

§

impl UnwindSafe for IndexVec

§

impl UnwindSafe for IndexVecIntoIter

§

impl UnwindSafe for rustmax::rayon::Yield

§

impl UnwindSafe for rustmax::regex::Error

§

impl UnwindSafe for Quote

§

impl UnwindSafe for BellStyle

§

impl UnwindSafe for Anchor

§

impl UnwindSafe for rustmax::rustyline::At

§

impl UnwindSafe for Behavior

§

impl UnwindSafe for CharSearch

§

impl UnwindSafe for rustmax::rustyline::Cmd

§

impl UnwindSafe for ColorMode

§

impl UnwindSafe for CompletionType

§

impl UnwindSafe for EditMode

§

impl UnwindSafe for rustmax::rustyline::Event

§

impl UnwindSafe for HistoryDuplicates

§

impl UnwindSafe for InputMode

§

impl UnwindSafe for KeyCode

§

impl UnwindSafe for Movement

§

impl UnwindSafe for Word

§

impl UnwindSafe for CmdKind

§

impl UnwindSafe for SearchDirection

§

impl UnwindSafe for rustmax::rustyline::line_buffer::Direction

§

impl UnwindSafe for WordAction

§

impl UnwindSafe for ValidationResult

§

impl UnwindSafe for Op

§

impl UnwindSafe for Category

§

impl UnwindSafe for CharEscape

§

impl UnwindSafe for TruncSide

§

impl UnwindSafe for InterfaceIndexOrAddress

§

impl UnwindSafe for AttrStyle

§

impl UnwindSafe for BinOp

§

impl UnwindSafe for CapturedParam

§

impl UnwindSafe for Data

§

impl UnwindSafe for rustmax::syn::Expr

§

impl UnwindSafe for FieldMutability

§

impl UnwindSafe for Fields

§

impl UnwindSafe for FnArg

§

impl UnwindSafe for ForeignItem

§

impl UnwindSafe for GenericArgument

§

impl UnwindSafe for GenericParam

§

impl UnwindSafe for ImplItem

§

impl UnwindSafe for ImplRestriction

§

impl UnwindSafe for rustmax::syn::Item

§

impl UnwindSafe for Lit

§

impl UnwindSafe for MacroDelimiter

§

impl UnwindSafe for Member

§

impl UnwindSafe for Meta

§

impl UnwindSafe for Pat

§

impl UnwindSafe for PathArguments

§

impl UnwindSafe for PointerMutability

§

impl UnwindSafe for RangeLimits

§

impl UnwindSafe for ReturnType

§

impl UnwindSafe for StaticMutability

§

impl UnwindSafe for Stmt

§

impl UnwindSafe for TraitBoundModifier

§

impl UnwindSafe for TraitItem

§

impl UnwindSafe for rustmax::syn::Type

§

impl UnwindSafe for TypeParamBound

§

impl UnwindSafe for UnOp

§

impl UnwindSafe for UseTree

§

impl UnwindSafe for Visibility

§

impl UnwindSafe for WherePredicate

§

impl UnwindSafe for SpooledData

§

impl UnwindSafe for ExprVal

§

impl UnwindSafe for LogicOperator

§

impl UnwindSafe for MathOperator

§

impl UnwindSafe for Node

§

impl UnwindSafe for rustmax::tera::Value

§

impl UnwindSafe for rustmax::termcolor::Color

§

impl UnwindSafe for rustmax::termcolor::ColorChoice

§

impl UnwindSafe for RuntimeFlavor

§

impl UnwindSafe for rustmax::tokio::sync::broadcast::error::RecvError

§

impl UnwindSafe for rustmax::tokio::sync::broadcast::error::TryRecvError

§

impl UnwindSafe for TryAcquireError

§

impl UnwindSafe for rustmax::tokio::sync::mpsc::error::TryRecvError

§

impl UnwindSafe for rustmax::tokio::sync::oneshot::error::TryRecvError

§

impl UnwindSafe for MissedTickBehavior

§

impl UnwindSafe for rustmax::toml::Value

§

impl UnwindSafe for rustmax::toml::value::Offset

§

impl UnwindSafe for GraphemeIncomplete

§

impl UnwindSafe for Origin

§

impl UnwindSafe for rustmax::url::ParseError

§

impl UnwindSafe for rustmax::url::Position

§

impl UnwindSafe for SyntaxViolation

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for rustmax::std::cmp::Ordering

§

impl UnwindSafe for TryReserveErrorKind

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for VarError

§

impl UnwindSafe for c_void

§

impl UnwindSafe for rustmax::std::fmt::Alignment

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for rustmax::std::io::ErrorKind

§

impl UnwindSafe for SeekFrom

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for Shutdown

§

impl UnwindSafe for rustmax::std::net::SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for SearchStep

§

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

§

impl UnwindSafe for rustmax::std::sync::mpsc::RecvTimeoutError

§

impl UnwindSafe for rustmax::std::sync::mpsc::TryRecvError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for AHasher

§

impl UnwindSafe for rustmax::ahash::RandomState

§

impl UnwindSafe for FailedToDeserializePathParams

§

impl UnwindSafe for InvalidFormContentType

§

impl UnwindSafe for InvalidUtf8InPathParam

§

impl UnwindSafe for MatchedPathMissing

§

impl UnwindSafe for MissingJsonContentType

§

impl UnwindSafe for MissingPathParams

§

impl UnwindSafe for NestedPathRejection

§

impl UnwindSafe for DefaultBodyLimit

§

impl UnwindSafe for MatchedPath

§

impl UnwindSafe for NestedPath

§

impl UnwindSafe for OriginalUri

§

impl UnwindSafe for RawForm

§

impl UnwindSafe for RawPathParams

§

impl UnwindSafe for RawQuery

§

impl UnwindSafe for rustmax::axum::response::sse::Event

§

impl UnwindSafe for KeepAlive

§

impl UnwindSafe for NoContent

§

impl UnwindSafe for Redirect

§

impl UnwindSafe for MethodFilter

§

impl UnwindSafe for rustmax::backtrace::Backtrace

§

impl UnwindSafe for rustmax::backtrace::BacktraceFrame

§

impl UnwindSafe for BacktraceSymbol

§

impl UnwindSafe for rustmax::backtrace::Frame

§

impl UnwindSafe for Symbol

§

impl UnwindSafe for Alphabet

§

impl UnwindSafe for DecodeMetadata

§

impl UnwindSafe for GeneralPurpose

§

impl UnwindSafe for GeneralPurposeConfig

§

impl UnwindSafe for DiscoveredItemId

§

impl UnwindSafe for CargoCallbacks

§

impl UnwindSafe for ClangVersion

§

impl UnwindSafe for CodegenConfig

§

impl UnwindSafe for RustTarget

§

impl UnwindSafe for rustmax::bitflags::parser::ParseError

§

impl UnwindSafe for Hash

§

impl UnwindSafe for Hasher

§

impl UnwindSafe for HexError

§

impl UnwindSafe for OutputReader

§

impl UnwindSafe for UninitSlice

§

impl UnwindSafe for BytesMut

§

impl UnwindSafe for Build

§

impl UnwindSafe for rustmax::cc::Error

§

impl UnwindSafe for Tool

§

impl UnwindSafe for InternalFixed

§

impl UnwindSafe for InternalNumeric

§

impl UnwindSafe for OffsetFormat

§

impl UnwindSafe for Parsed

§

impl UnwindSafe for NaiveDateDaysIterator

§

impl UnwindSafe for NaiveDateWeeksIterator

§

impl UnwindSafe for Days

§

impl UnwindSafe for FixedOffset

§

impl UnwindSafe for IsoWeek

§

impl UnwindSafe for rustmax::chrono::Local

§

impl UnwindSafe for Months

§

impl UnwindSafe for NaiveDate

§

impl UnwindSafe for NaiveDateTime

§

impl UnwindSafe for NaiveTime

§

impl UnwindSafe for NaiveWeek

§

impl UnwindSafe for OutOfRange

§

impl UnwindSafe for OutOfRangeError

§

impl UnwindSafe for rustmax::chrono::ParseError

§

impl UnwindSafe for ParseMonthError

§

impl UnwindSafe for ParseWeekdayError

§

impl UnwindSafe for TimeDelta

§

impl UnwindSafe for Utc

§

impl UnwindSafe for BoolValueParser

§

impl UnwindSafe for BoolishValueParser

§

impl UnwindSafe for FalseyValueParser

§

impl UnwindSafe for NonEmptyStringValueParser

§

impl UnwindSafe for rustmax::clap::builder::OsStr

§

impl UnwindSafe for OsStringValueParser

§

impl UnwindSafe for PathBufValueParser

§

impl UnwindSafe for PossibleValue

§

impl UnwindSafe for PossibleValuesParser

§

impl UnwindSafe for Str

§

impl UnwindSafe for StringValueParser

§

impl UnwindSafe for StyledStr

§

impl UnwindSafe for Styles

§

impl UnwindSafe for UnknownArgumentValueParser

§

impl UnwindSafe for ValueRange

§

impl UnwindSafe for RichFormatter

§

impl UnwindSafe for KindFormatter

§

impl UnwindSafe for ArgGroup

§

impl UnwindSafe for rustmax::clap::Id

§

impl UnwindSafe for ReadyTimeoutError

§

impl UnwindSafe for rustmax::crossbeam::channel::RecvError

§

impl UnwindSafe for SelectTimeoutError

§

impl UnwindSafe for TryReadyError

§

impl UnwindSafe for TrySelectError

§

impl UnwindSafe for Parker

§

impl UnwindSafe for Unparker

§

impl UnwindSafe for WaitGroup

§

impl UnwindSafe for Backoff

§

impl UnwindSafe for CxxString

§

impl UnwindSafe for Exception

§

impl UnwindSafe for rustmax::derive_more::FromStrError

§

impl UnwindSafe for rustmax::derive_more::UnitError

§

impl UnwindSafe for WrongVariantError

§

impl UnwindSafe for rustmax::env_logger::fmt::Timestamp

§

impl UnwindSafe for Ansi256Color

§

impl UnwindSafe for EffectIter

§

impl UnwindSafe for Effects

§

impl UnwindSafe for Reset

§

impl UnwindSafe for RgbColor

§

impl UnwindSafe for Style

§

impl UnwindSafe for rustmax::futures::channel::mpsc::SendError

§

impl UnwindSafe for rustmax::futures::channel::mpsc::TryRecvError

§

impl UnwindSafe for Canceled

§

impl UnwindSafe for Enter

§

impl UnwindSafe for EnterError

§

impl UnwindSafe for rustmax::futures::io::Empty

§

impl UnwindSafe for rustmax::futures::io::Repeat

§

impl UnwindSafe for rustmax::futures::io::Sink

§

impl UnwindSafe for Aborted

§

impl UnwindSafe for AtomicWaker

§

impl UnwindSafe for SpawnError

§

impl UnwindSafe for rustmax::hyper::body::Bytes

§

impl UnwindSafe for SizeHint

§

impl UnwindSafe for rustmax::hyper::client::conn::http1::Builder

§

impl UnwindSafe for rustmax::hyper::ext::Protocol

§

impl UnwindSafe for ReasonPhrase

§

impl UnwindSafe for InvalidMethod

§

impl UnwindSafe for InvalidStatusCode

§

impl UnwindSafe for rustmax::hyper::http::Error

§

impl UnwindSafe for Authority

§

impl UnwindSafe for rustmax::hyper::http::uri::Builder

§

impl UnwindSafe for InvalidUri

§

impl UnwindSafe for InvalidUriParts

§

impl UnwindSafe for rustmax::hyper::http::uri::Parts

§

impl UnwindSafe for PathAndQuery

§

impl UnwindSafe for Scheme

§

impl UnwindSafe for Uri

§

impl UnwindSafe for OnUpgrade

§

impl UnwindSafe for rustmax::jiff::civil::Date

§

impl UnwindSafe for DateArithmetic

§

impl UnwindSafe for DateDifference

§

impl UnwindSafe for DateSeries

§

impl UnwindSafe for rustmax::jiff::civil::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 rustmax::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 rustmax::jiff::fmt::friendly::SpanParser

§

impl UnwindSafe for rustmax::jiff::fmt::friendly::SpanPrinter

§

impl UnwindSafe for rustmax::jiff::fmt::rfc2822::DateTimeParser

§

impl UnwindSafe for rustmax::jiff::fmt::rfc2822::DateTimePrinter

§

impl UnwindSafe for BrokenDownTime

§

impl UnwindSafe for rustmax::jiff::fmt::temporal::DateTimeParser

§

impl UnwindSafe for rustmax::jiff::fmt::temporal::DateTimePrinter

§

impl UnwindSafe for PiecesNumericOffset

§

impl UnwindSafe for rustmax::jiff::fmt::temporal::SpanParser

§

impl UnwindSafe for rustmax::jiff::fmt::temporal::SpanPrinter

§

impl UnwindSafe for SignedDuration

§

impl UnwindSafe for SignedDurationRound

§

impl UnwindSafe for rustmax::jiff::Span

§

impl UnwindSafe for SpanFieldwise

§

impl UnwindSafe for rustmax::jiff::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 rustmax::jiff::tz::Offset

§

impl UnwindSafe for OffsetArithmetic

§

impl UnwindSafe for OffsetRound

§

impl UnwindSafe for TimeZone

§

impl UnwindSafe for TimeZoneDatabase

§

impl UnwindSafe for rustmax::json5::Location

§

impl UnwindSafe for Dl_info

§

impl UnwindSafe for Elf32_Chdr

§

impl UnwindSafe for Elf32_Ehdr

§

impl UnwindSafe for Elf32_Phdr

§

impl UnwindSafe for Elf32_Shdr

§

impl UnwindSafe for Elf32_Sym

§

impl UnwindSafe for Elf64_Chdr

§

impl UnwindSafe for Elf64_Ehdr

§

impl UnwindSafe for Elf64_Phdr

§

impl UnwindSafe for Elf64_Shdr

§

impl UnwindSafe for Elf64_Sym

§

impl UnwindSafe for __c_anonymous__kernel_fsid_t

§

impl UnwindSafe for __c_anonymous_elf32_rel

§

impl UnwindSafe for __c_anonymous_elf32_rela

§

impl UnwindSafe for __c_anonymous_elf64_rel

§

impl UnwindSafe for __c_anonymous_elf64_rela

§

impl UnwindSafe for __c_anonymous_ifru_map

§

impl UnwindSafe for __c_anonymous_ptrace_syscall_info_entry

§

impl UnwindSafe for __c_anonymous_ptrace_syscall_info_exit

§

impl UnwindSafe for __c_anonymous_ptrace_syscall_info_seccomp

§

impl UnwindSafe for __c_anonymous_sockaddr_can_j1939

§

impl UnwindSafe for __c_anonymous_sockaddr_can_tp

§

impl UnwindSafe for __exit_status

§

impl UnwindSafe for __timeval

§

impl UnwindSafe for _libc_fpstate

§

impl UnwindSafe for _libc_fpxreg

§

impl UnwindSafe for _libc_xmmreg

§

impl UnwindSafe for addrinfo

§

impl UnwindSafe for af_alg_iv

§

impl UnwindSafe for aiocb

§

impl UnwindSafe for arpd_request

§

impl UnwindSafe for arphdr

§

impl UnwindSafe for arpreq

§

impl UnwindSafe for arpreq_old

§

impl UnwindSafe for can_filter

§

impl UnwindSafe for can_frame

§

impl UnwindSafe for canfd_frame

§

impl UnwindSafe for canxl_frame

§

impl UnwindSafe for clone_args

§

impl UnwindSafe for cmsghdr

§

impl UnwindSafe for cpu_set_t

§

impl UnwindSafe for dirent64

§

impl UnwindSafe for dirent

§

impl UnwindSafe for dl_phdr_info

§

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

§

impl UnwindSafe for genlmsghdr

§

impl UnwindSafe for glob64_t

§

impl UnwindSafe for glob_t

§

impl UnwindSafe for group

§

impl UnwindSafe for hostent

§

impl UnwindSafe for hwtstamp_config

§

impl UnwindSafe for if_nameindex

§

impl UnwindSafe for ifaddrs

§

impl UnwindSafe for ifconf

§

impl UnwindSafe for ifreq

§

impl UnwindSafe for in6_addr

§

impl UnwindSafe for in6_ifreq

§

impl UnwindSafe for in6_pktinfo

§

impl UnwindSafe for in6_rtmsg

§

impl UnwindSafe for in_addr

§

impl UnwindSafe for in_pktinfo

§

impl UnwindSafe for inotify_event

§

impl UnwindSafe for input_absinfo

§

impl UnwindSafe for input_event

§

impl UnwindSafe for input_id

§

impl UnwindSafe for input_keymap_entry

§

impl UnwindSafe for input_mask

§

impl UnwindSafe for iocb

§

impl UnwindSafe for iovec

§

impl UnwindSafe for ip_mreq

§

impl UnwindSafe for ip_mreq_source

§

impl UnwindSafe for ip_mreqn

§

impl UnwindSafe for ipc_perm

§

impl UnwindSafe for ipv6_mreq

§

impl UnwindSafe for itimerspec

§

impl UnwindSafe for itimerval

§

impl UnwindSafe for iw_discarded

§

impl UnwindSafe for iw_encode_ext

§

impl UnwindSafe for iw_event

§

impl UnwindSafe for iw_freq

§

impl UnwindSafe for iw_michaelmicfailure

§

impl UnwindSafe for iw_missed

§

impl UnwindSafe for iw_mlme

§

impl UnwindSafe for iw_param

§

impl UnwindSafe for iw_pmkid_cand

§

impl UnwindSafe for iw_pmksa

§

impl UnwindSafe for iw_point

§

impl UnwindSafe for iw_priv_args

§

impl UnwindSafe for iw_quality

§

impl UnwindSafe for iw_range

§

impl UnwindSafe for iw_scan_req

§

impl UnwindSafe for iw_statistics

§

impl UnwindSafe for iw_thrspy

§

impl UnwindSafe for iwreq

§

impl UnwindSafe for j1939_filter

§

impl UnwindSafe for lconv

§

impl UnwindSafe for linger

§

impl UnwindSafe for mallinfo2

§

impl UnwindSafe for mallinfo

§

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

§

impl UnwindSafe for msginfo

§

impl UnwindSafe for msqid_ds

§

impl UnwindSafe for nl_mmap_hdr

§

impl UnwindSafe for nl_mmap_req

§

impl UnwindSafe for nl_pktinfo

§

impl UnwindSafe for nlattr

§

impl UnwindSafe for nlmsgerr

§

impl UnwindSafe for nlmsghdr

§

impl UnwindSafe for ntptimeval

§

impl UnwindSafe for open_how

§

impl UnwindSafe for option

§

impl UnwindSafe for packet_mreq

§

impl UnwindSafe for passwd

§

impl UnwindSafe for pollfd

§

impl UnwindSafe for posix_spawn_file_actions_t

§

impl UnwindSafe for posix_spawnattr_t

§

impl UnwindSafe for protoent

§

impl UnwindSafe for pthread_attr_t

§

impl UnwindSafe for pthread_barrier_t

§

impl UnwindSafe for pthread_barrierattr_t

§

impl UnwindSafe for pthread_cond_t

§

impl UnwindSafe for pthread_condattr_t

§

impl UnwindSafe for pthread_mutex_t

§

impl UnwindSafe for pthread_mutexattr_t

§

impl UnwindSafe for pthread_rwlock_t

§

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

§

impl UnwindSafe for signalfd_siginfo

§

impl UnwindSafe for sigset_t

§

impl UnwindSafe for sigval

§

impl UnwindSafe for sock_extended_err

§

impl UnwindSafe for sock_filter

§

impl UnwindSafe for sock_fprog

§

impl UnwindSafe for sock_txtime

§

impl UnwindSafe for sockaddr

§

impl UnwindSafe for sockaddr_alg

§

impl UnwindSafe for sockaddr_can

§

impl UnwindSafe for sockaddr_in6

§

impl UnwindSafe for sockaddr_in

§

impl UnwindSafe for sockaddr_ll

§

impl UnwindSafe for sockaddr_nl

§

impl UnwindSafe for sockaddr_pkt

§

impl UnwindSafe for sockaddr_storage

§

impl UnwindSafe for sockaddr_un

§

impl UnwindSafe for sockaddr_vm

§

impl UnwindSafe for sockaddr_xdp

§

impl UnwindSafe for spwd

§

impl UnwindSafe for stack_t

§

impl UnwindSafe for stat64

§

impl UnwindSafe for rustmax::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 timespec

§

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

§

impl UnwindSafe for SetLoggerError

§

impl UnwindSafe for rustmax::mime::FromStrError

§

impl UnwindSafe for Mime

§

impl UnwindSafe for Check

§

impl UnwindSafe for Complete

§

impl UnwindSafe for Emit

§

impl UnwindSafe for SaturatingIterator

§

impl UnwindSafe for Streaming

§

impl UnwindSafe for BigInt

§

impl UnwindSafe for BigUint

§

impl UnwindSafe for ParseBigIntError

§

impl UnwindSafe for rustmax::proc_macro2::extra::DelimSpan

§

impl UnwindSafe for rustmax::proc_macro2::Group

§

impl UnwindSafe for rustmax::proc_macro2::LexError

§

impl UnwindSafe for LineColumn

§

impl UnwindSafe for rustmax::proc_macro2::Literal

§

impl UnwindSafe for rustmax::proc_macro2::Punct

§

impl UnwindSafe for rustmax::proc_macro2::Span

§

impl UnwindSafe for rustmax::proc_macro2::TokenStream

§

impl UnwindSafe for rustmax::proc_macro2::token_stream::IntoIter

§

impl UnwindSafe for rustmax::proc_macro::Diagnostic

§

impl UnwindSafe for ExpandError

§

impl UnwindSafe for rustmax::proc_macro::Group

§

impl UnwindSafe for rustmax::proc_macro::Ident

§

impl UnwindSafe for rustmax::proc_macro::LexError

§

impl UnwindSafe for rustmax::proc_macro::Literal

§

impl UnwindSafe for rustmax::proc_macro::Punct

§

impl UnwindSafe for SourceFile

§

impl UnwindSafe for rustmax::proc_macro::Span

§

impl UnwindSafe for rustmax::proc_macro::TokenStream

§

impl UnwindSafe for rustmax::proc_macro::token_stream::IntoIter

§

impl UnwindSafe for VarBitSet

§

impl UnwindSafe for rustmax::proptest::bool::Any

§

impl UnwindSafe for BoolValueTree

§

impl UnwindSafe for Weighted

§

impl UnwindSafe for CharValueTree

§

impl UnwindSafe for rustmax::proptest::num::f32::Any

§

impl UnwindSafe for rustmax::proptest::num::f32::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::f64::Any

§

impl UnwindSafe for rustmax::proptest::num::f64::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::i8::Any

§

impl UnwindSafe for rustmax::proptest::num::i8::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::i16::Any

§

impl UnwindSafe for rustmax::proptest::num::i16::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::i32::Any

§

impl UnwindSafe for rustmax::proptest::num::i32::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::i64::Any

§

impl UnwindSafe for rustmax::proptest::num::i64::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::i128::Any

§

impl UnwindSafe for rustmax::proptest::num::i128::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::isize::Any

§

impl UnwindSafe for rustmax::proptest::num::isize::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::u8::Any

§

impl UnwindSafe for rustmax::proptest::num::u8::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::u16::Any

§

impl UnwindSafe for rustmax::proptest::num::u16::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::u32::Any

§

impl UnwindSafe for rustmax::proptest::num::u32::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::u64::Any

§

impl UnwindSafe for rustmax::proptest::num::u64::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::u128::Any

§

impl UnwindSafe for rustmax::proptest::num::u128::BinarySearch

§

impl UnwindSafe for rustmax::proptest::num::usize::Any

§

impl UnwindSafe for rustmax::proptest::num::usize::BinarySearch

§

impl UnwindSafe for PathParams

§

impl UnwindSafe for Probability

§

impl UnwindSafe for rustmax::proptest::sample::Index

§

impl UnwindSafe for IndexStrategy

§

impl UnwindSafe for IndexValueTree

§

impl UnwindSafe for Selector

§

impl UnwindSafe for SelectorStrategy

§

impl UnwindSafe for SelectorValueTree

§

impl UnwindSafe for SizeRange

§

impl UnwindSafe for CheckStrategySanityOptions

§

impl UnwindSafe for StringParam

§

impl UnwindSafe for MapFailurePersistence

§

impl UnwindSafe for PersistedSeed

§

impl UnwindSafe for Reason

§

impl UnwindSafe for TestRng

§

impl UnwindSafe for rustmax::rand::distr::slice::Empty

§

impl UnwindSafe for Alphanumeric

§

impl UnwindSafe for Bernoulli

§

impl UnwindSafe for Open01

§

impl UnwindSafe for OpenClosed01

§

impl UnwindSafe for StandardUniform

§

impl UnwindSafe for UniformChar

§

impl UnwindSafe for UniformDuration

§

impl UnwindSafe for UniformUsize

§

impl UnwindSafe for StepRng

§

impl UnwindSafe for StdRng

§

impl UnwindSafe for ChaCha8Core

§

impl UnwindSafe for ChaCha8Rng

§

impl UnwindSafe for ChaCha12Core

§

impl UnwindSafe for ChaCha12Rng

§

impl UnwindSafe for ChaCha20Core

§

impl UnwindSafe for ChaCha20Rng

§

impl UnwindSafe for OsError

§

impl UnwindSafe for OsRng

§

impl UnwindSafe for Lcg64Xsh32

§

impl UnwindSafe for Lcg128CmDxsm64

§

impl UnwindSafe for Lcg128Xsl64

§

impl UnwindSafe for Mcg128Xsl64

§

impl UnwindSafe for FnContext

§

impl UnwindSafe for rustmax::regex::bytes::CaptureLocations

§

impl UnwindSafe for rustmax::regex::bytes::Regex

§

impl UnwindSafe for rustmax::regex::bytes::RegexBuilder

§

impl UnwindSafe for rustmax::regex::bytes::RegexSet

§

impl UnwindSafe for rustmax::regex::bytes::RegexSetBuilder

§

impl UnwindSafe for rustmax::regex::bytes::SetMatches

§

impl UnwindSafe for rustmax::regex::bytes::SetMatchesIntoIter

§

impl UnwindSafe for rustmax::regex::CaptureLocations

§

impl UnwindSafe for rustmax::regex::Regex

§

impl UnwindSafe for rustmax::regex::RegexBuilder

§

impl UnwindSafe for rustmax::regex::RegexSet

§

impl UnwindSafe for rustmax::regex::RegexSetBuilder

§

impl UnwindSafe for rustmax::regex::SetMatches

§

impl UnwindSafe for rustmax::regex::SetMatchesIntoIter

§

impl UnwindSafe for rustmax::reqwest::dns::Name

§

impl UnwindSafe for HeaderName

§

impl UnwindSafe for HeaderValue

§

impl UnwindSafe for InvalidHeaderName

§

impl UnwindSafe for InvalidHeaderValue

§

impl UnwindSafe for MaxSizeReached

§

impl UnwindSafe for ToStrError

§

impl UnwindSafe for Certificate

§

impl UnwindSafe for rustmax::reqwest::Identity

§

impl UnwindSafe for Method

§

impl UnwindSafe for NoProxy

§

impl UnwindSafe for StatusCode

§

impl UnwindSafe for rustmax::reqwest::Version

§

impl UnwindSafe for TlsInfo

§

impl UnwindSafe for rustmax::reqwest::tls::Version

§

impl UnwindSafe for FilenameCompleter

§

impl UnwindSafe for rustmax::rustyline::completion::Pair

§

impl UnwindSafe for rustmax::rustyline::config::Builder

§

impl UnwindSafe for MatchingBracketHighlighter

§

impl UnwindSafe for HistoryHinter

§

impl UnwindSafe for FileHistory

§

impl UnwindSafe for MemHistory

§

impl UnwindSafe for LineBuffer

§

impl UnwindSafe for Changeset

§

impl UnwindSafe for rustmax::rustyline::Config

§

impl UnwindSafe for KeyEvent

§

impl UnwindSafe for Modifiers

§

impl UnwindSafe for MatchingBracketValidator

§

impl UnwindSafe for BuildMetadata

§

impl UnwindSafe for Comparator

§

impl UnwindSafe for rustmax::semver::Error

§

impl UnwindSafe for Prerelease

§

impl UnwindSafe for rustmax::semver::Version

§

impl UnwindSafe for VersionReq

§

impl UnwindSafe for IgnoredAny

§

impl UnwindSafe for rustmax::serde::de::value::Error

§

impl UnwindSafe for rustmax::serde_json::map::IntoIter

§

impl UnwindSafe for CompactFormatter

§

impl UnwindSafe for RawValue

§

impl UnwindSafe for rustmax::serde_json::value::Serializer

§

impl UnwindSafe for ATerm

§

impl UnwindSafe for B0

§

impl UnwindSafe for B1

§

impl UnwindSafe for Equal

§

impl UnwindSafe for Greater

§

impl UnwindSafe for Less

§

impl UnwindSafe for UTerm

§

impl UnwindSafe for Z0

§

impl UnwindSafe for Eager

§

impl UnwindSafe for rustmax::sha2::digest::block_buffer::Error

§

impl UnwindSafe for rustmax::sha2::digest::block_buffer::Lazy

§

impl UnwindSafe for InvalidLength

§

impl UnwindSafe for InvalidBufferSize

§

impl UnwindSafe for InvalidOutputSize

§

impl UnwindSafe for Sha256VarCore

§

impl UnwindSafe for Sha512VarCore

§

impl UnwindSafe for Domain

§

impl UnwindSafe for rustmax::socket2::Protocol

§

impl UnwindSafe for RecvFlags

§

impl UnwindSafe for SockAddr

§

impl UnwindSafe for Socket

§

impl UnwindSafe for TcpKeepalive

§

impl UnwindSafe for rustmax::socket2::Type

§

impl UnwindSafe for TokenBuffer

§

impl UnwindSafe for End

§

impl UnwindSafe for Nothing

§

impl UnwindSafe for rustmax::syn::Abi

§

impl UnwindSafe for AngleBracketedGenericArguments

§

impl UnwindSafe for Arm

§

impl UnwindSafe for AssocConst

§

impl UnwindSafe for AssocType

§

impl UnwindSafe for Attribute

§

impl UnwindSafe for BareFnArg

§

impl UnwindSafe for BareVariadic

§

impl UnwindSafe for rustmax::syn::Block

§

impl UnwindSafe for BoundLifetimes

§

impl UnwindSafe for ConstParam

§

impl UnwindSafe for Constraint

§

impl UnwindSafe for DataEnum

§

impl UnwindSafe for DataStruct

§

impl UnwindSafe for DataUnion

§

impl UnwindSafe for DeriveInput

§

impl UnwindSafe for rustmax::syn::Error

§

impl UnwindSafe for ExprArray

§

impl UnwindSafe for ExprAssign

§

impl UnwindSafe for ExprAsync

§

impl UnwindSafe for ExprAwait

§

impl UnwindSafe for ExprBinary

§

impl UnwindSafe for ExprBlock

§

impl UnwindSafe for ExprBreak

§

impl UnwindSafe for ExprCall

§

impl UnwindSafe for ExprCast

§

impl UnwindSafe for ExprClosure

§

impl UnwindSafe for ExprContinue

§

impl UnwindSafe for ExprField

§

impl UnwindSafe for ExprForLoop

§

impl UnwindSafe for ExprGroup

§

impl UnwindSafe for ExprIf

§

impl UnwindSafe for ExprIndex

§

impl UnwindSafe for ExprInfer

§

impl UnwindSafe for ExprLet

§

impl UnwindSafe for ExprLoop

§

impl UnwindSafe for ExprMatch

§

impl UnwindSafe for ExprMethodCall

§

impl UnwindSafe for ExprParen

§

impl UnwindSafe for ExprRawAddr

§

impl UnwindSafe for ExprReference

§

impl UnwindSafe for ExprRepeat

§

impl UnwindSafe for ExprReturn

§

impl UnwindSafe for ExprStruct

§

impl UnwindSafe for ExprTry

§

impl UnwindSafe for ExprTryBlock

§

impl UnwindSafe for ExprTuple

§

impl UnwindSafe for ExprUnary

§

impl UnwindSafe for ExprUnsafe

§

impl UnwindSafe for ExprWhile

§

impl UnwindSafe for ExprYield

§

impl UnwindSafe for Field

§

impl UnwindSafe for FieldPat

§

impl UnwindSafe for FieldValue

§

impl UnwindSafe for FieldsNamed

§

impl UnwindSafe for FieldsUnnamed

§

impl UnwindSafe for rustmax::syn::File

§

impl UnwindSafe for ForeignItemFn

§

impl UnwindSafe for ForeignItemMacro

§

impl UnwindSafe for ForeignItemStatic

§

impl UnwindSafe for ForeignItemType

§

impl UnwindSafe for Generics

§

impl UnwindSafe for rustmax::syn::Ident

§

impl UnwindSafe for ImplItemConst

§

impl UnwindSafe for ImplItemFn

§

impl UnwindSafe for ImplItemMacro

§

impl UnwindSafe for ImplItemType

§

impl UnwindSafe for rustmax::syn::Index

§

impl UnwindSafe for ItemConst

§

impl UnwindSafe for ItemEnum

§

impl UnwindSafe for ItemExternCrate

§

impl UnwindSafe for ItemFn

§

impl UnwindSafe for ItemForeignMod

§

impl UnwindSafe for ItemImpl

§

impl UnwindSafe for ItemMacro

§

impl UnwindSafe for ItemMod

§

impl UnwindSafe for ItemStatic

§

impl UnwindSafe for ItemStruct

§

impl UnwindSafe for ItemTrait

§

impl UnwindSafe for ItemTraitAlias

§

impl UnwindSafe for ItemType

§

impl UnwindSafe for ItemUnion

§

impl UnwindSafe for ItemUse

§

impl UnwindSafe for Label

§

impl UnwindSafe for Lifetime

§

impl UnwindSafe for LifetimeParam

§

impl UnwindSafe for LitBool

§

impl UnwindSafe for LitByte

§

impl UnwindSafe for LitByteStr

§

impl UnwindSafe for LitCStr

§

impl UnwindSafe for LitChar

§

impl UnwindSafe for LitFloat

§

impl UnwindSafe for LitInt

§

impl UnwindSafe for LitStr

§

impl UnwindSafe for rustmax::syn::Local

§

impl UnwindSafe for LocalInit

§

impl UnwindSafe for rustmax::syn::Macro

§

impl UnwindSafe for MetaList

§

impl UnwindSafe for MetaNameValue

§

impl UnwindSafe for ParenthesizedGenericArguments

§

impl UnwindSafe for ExprConst

§

impl UnwindSafe for PatIdent

§

impl UnwindSafe for ExprLit

§

impl UnwindSafe for ExprMacro

§

impl UnwindSafe for PatOr

§

impl UnwindSafe for PatParen

§

impl UnwindSafe for ExprPath

§

impl UnwindSafe for ExprRange

§

impl UnwindSafe for PatReference

§

impl UnwindSafe for PatRest

§

impl UnwindSafe for PatSlice

§

impl UnwindSafe for PatStruct

§

impl UnwindSafe for PatTuple

§

impl UnwindSafe for PatTupleStruct

§

impl UnwindSafe for PatType

§

impl UnwindSafe for PatWild

§

impl UnwindSafe for rustmax::syn::Path

§

impl UnwindSafe for PathSegment

§

impl UnwindSafe for PreciseCapture

§

impl UnwindSafe for PredicateLifetime

§

impl UnwindSafe for PredicateType

§

impl UnwindSafe for QSelf

§

impl UnwindSafe for rustmax::syn::Receiver

§

impl UnwindSafe for Signature

§

impl UnwindSafe for StmtMacro

§

impl UnwindSafe for TraitBound

§

impl UnwindSafe for TraitItemConst

§

impl UnwindSafe for TraitItemFn

§

impl UnwindSafe for TraitItemMacro

§

impl UnwindSafe for TraitItemType

§

impl UnwindSafe for TypeArray

§

impl UnwindSafe for TypeBareFn

§

impl UnwindSafe for TypeGroup

§

impl UnwindSafe for TypeImplTrait

§

impl UnwindSafe for TypeInfer

§

impl UnwindSafe for TypeMacro

§

impl UnwindSafe for TypeNever

§

impl UnwindSafe for TypeParam

§

impl UnwindSafe for TypeParen

§

impl UnwindSafe for TypePath

§

impl UnwindSafe for TypePtr

§

impl UnwindSafe for TypeReference

§

impl UnwindSafe for TypeSlice

§

impl UnwindSafe for TypeTraitObject

§

impl UnwindSafe for TypeTuple

§

impl UnwindSafe for UseGlob

§

impl UnwindSafe for UseGroup

§

impl UnwindSafe for UseName

§

impl UnwindSafe for UsePath

§

impl UnwindSafe for UseRename

§

impl UnwindSafe for Variadic

§

impl UnwindSafe for Variant

§

impl UnwindSafe for VisRestricted

§

impl UnwindSafe for WhereClause

§

impl UnwindSafe for Abstract

§

impl UnwindSafe for rustmax::syn::token::And

§

impl UnwindSafe for AndAnd

§

impl UnwindSafe for AndEq

§

impl UnwindSafe for As

§

impl UnwindSafe for Async

§

impl UnwindSafe for rustmax::syn::token::At

§

impl UnwindSafe for Auto

§

impl UnwindSafe for Await

§

impl UnwindSafe for Become

§

impl UnwindSafe for rustmax::syn::token::Box

§

impl UnwindSafe for Brace

§

impl UnwindSafe for Bracket

§

impl UnwindSafe for Break

§

impl UnwindSafe for Caret

§

impl UnwindSafe for CaretEq

§

impl UnwindSafe for Colon

§

impl UnwindSafe for Comma

§

impl UnwindSafe for Const

§

impl UnwindSafe for Continue

§

impl UnwindSafe for Crate

§

impl UnwindSafe for Default

§

impl UnwindSafe for Do

§

impl UnwindSafe for Dollar

§

impl UnwindSafe for Dot

§

impl UnwindSafe for DotDot

§

impl UnwindSafe for DotDotDot

§

impl UnwindSafe for DotDotEq

§

impl UnwindSafe for Dyn

§

impl UnwindSafe for Else

§

impl UnwindSafe for Enum

§

impl UnwindSafe for Eq

§

impl UnwindSafe for EqEq

§

impl UnwindSafe for Extern

§

impl UnwindSafe for FatArrow

§

impl UnwindSafe for Final

§

impl UnwindSafe for Fn

§

impl UnwindSafe for For

§

impl UnwindSafe for Ge

§

impl UnwindSafe for rustmax::syn::token::Group

§

impl UnwindSafe for Gt

§

impl UnwindSafe for rustmax::syn::token::If

§

impl UnwindSafe for Impl

§

impl UnwindSafe for rustmax::syn::token::In

§

impl UnwindSafe for LArrow

§

impl UnwindSafe for Le

§

impl UnwindSafe for Let

§

impl UnwindSafe for Loop

§

impl UnwindSafe for Lt

§

impl UnwindSafe for rustmax::syn::token::Macro

§

impl UnwindSafe for rustmax::syn::token::Match

§

impl UnwindSafe for Minus

§

impl UnwindSafe for MinusEq

§

impl UnwindSafe for Mod

§

impl UnwindSafe for Move

§

impl UnwindSafe for Mut

§

impl UnwindSafe for Ne

§

impl UnwindSafe for rustmax::syn::token::Not

§

impl UnwindSafe for rustmax::syn::token::Or

§

impl UnwindSafe for OrEq

§

impl UnwindSafe for OrOr

§

impl UnwindSafe for Override

§

impl UnwindSafe for Paren

§

impl UnwindSafe for PathSep

§

impl UnwindSafe for Percent

§

impl UnwindSafe for PercentEq

§

impl UnwindSafe for Plus

§

impl UnwindSafe for PlusEq

§

impl UnwindSafe for Pound

§

impl UnwindSafe for Priv

§

impl UnwindSafe for Pub

§

impl UnwindSafe for Question

§

impl UnwindSafe for RArrow

§

impl UnwindSafe for Raw

§

impl UnwindSafe for rustmax::syn::token::Ref

§

impl UnwindSafe for Return

§

impl UnwindSafe for SelfType

§

impl UnwindSafe for SelfValue

§

impl UnwindSafe for Semi

§

impl UnwindSafe for Shl

§

impl UnwindSafe for ShlEq

§

impl UnwindSafe for Shr

§

impl UnwindSafe for ShrEq

§

impl UnwindSafe for Slash

§

impl UnwindSafe for SlashEq

§

impl UnwindSafe for Star

§

impl UnwindSafe for StarEq

§

impl UnwindSafe for Static

§

impl UnwindSafe for Struct

§

impl UnwindSafe for Super

§

impl UnwindSafe for Tilde

§

impl UnwindSafe for Trait

§

impl UnwindSafe for Try

§

impl UnwindSafe for rustmax::syn::token::Type

§

impl UnwindSafe for Typeof

§

impl UnwindSafe for Underscore

§

impl UnwindSafe for rustmax::syn::token::Union

§

impl UnwindSafe for Unsafe

§

impl UnwindSafe for Unsized

§

impl UnwindSafe for Use

§

impl UnwindSafe for Virtual

§

impl UnwindSafe for Where

§

impl UnwindSafe for While

§

impl UnwindSafe for rustmax::syn::token::Yield

§

impl UnwindSafe for SpooledTempFile

§

impl UnwindSafe for rustmax::tempfile::TempDir

§

impl UnwindSafe for TempPath

§

impl UnwindSafe for rustmax::tera::ast::Block

§

impl UnwindSafe for rustmax::tera::ast::Expr

§

impl UnwindSafe for FilterSection

§

impl UnwindSafe for Forloop

§

impl UnwindSafe for FunctionCall

§

impl UnwindSafe for rustmax::tera::ast::If

§

impl UnwindSafe for rustmax::tera::ast::In

§

impl UnwindSafe for LogicExpr

§

impl UnwindSafe for MacroCall

§

impl UnwindSafe for MacroDefinition

§

impl UnwindSafe for MathExpr

§

impl UnwindSafe for Set

§

impl UnwindSafe for StringConcat

§

impl UnwindSafe for Test

§

impl UnwindSafe for WS

§

impl UnwindSafe for rustmax::tera::Context

§

impl UnwindSafe for rustmax::tera::Number

§

impl UnwindSafe for Template

§

impl UnwindSafe for rustmax::termcolor::Buffer

§

impl UnwindSafe for BufferWriter

§

impl UnwindSafe for BufferedStandardStream

§

impl UnwindSafe for ColorChoiceParseError

§

impl UnwindSafe for ColorSpec

§

impl UnwindSafe for ParseColorError

§

impl UnwindSafe for StandardStream

§

impl UnwindSafe for rustmax::tokio::fs::DirBuilder

§

impl UnwindSafe for rustmax::tokio::fs::DirEntry

§

impl UnwindSafe for rustmax::tokio::fs::OpenOptions

§

impl UnwindSafe for rustmax::tokio::io::Empty

§

impl UnwindSafe for Interest

§

impl UnwindSafe for rustmax::tokio::io::Ready

§

impl UnwindSafe for rustmax::tokio::io::Repeat

§

impl UnwindSafe for SimplexStream

§

impl UnwindSafe for rustmax::tokio::io::Sink

§

impl UnwindSafe for rustmax::tokio::io::Stderr

§

impl UnwindSafe for rustmax::tokio::io::Stdin

§

impl UnwindSafe for rustmax::tokio::io::Stdout

§

impl UnwindSafe for TryIoError

§

impl UnwindSafe for rustmax::tokio::net::TcpListener

§

impl UnwindSafe for TcpSocket

§

impl UnwindSafe for rustmax::tokio::net::TcpStream

§

impl UnwindSafe for rustmax::tokio::net::UdpSocket

§

impl UnwindSafe for rustmax::tokio::net::UnixDatagram

§

impl UnwindSafe for rustmax::tokio::net::UnixListener

§

impl UnwindSafe for UnixSocket

§

impl UnwindSafe for rustmax::tokio::net::UnixStream

§

impl UnwindSafe for rustmax::tokio::net::tcp::OwnedReadHalf

§

impl UnwindSafe for rustmax::tokio::net::tcp::OwnedWriteHalf

§

impl UnwindSafe for rustmax::tokio::net::tcp::ReuniteError

§

impl UnwindSafe for rustmax::tokio::net::unix::pipe::OpenOptions

§

impl UnwindSafe for rustmax::tokio::net::unix::pipe::Receiver

§

impl UnwindSafe for rustmax::tokio::net::unix::pipe::Sender

§

impl UnwindSafe for rustmax::tokio::net::unix::OwnedReadHalf

§

impl UnwindSafe for rustmax::tokio::net::unix::OwnedWriteHalf

§

impl UnwindSafe for rustmax::tokio::net::unix::ReuniteError

§

impl UnwindSafe for rustmax::tokio::net::unix::SocketAddr

§

impl UnwindSafe for rustmax::tokio::net::unix::UCred

§

impl UnwindSafe for rustmax::tokio::process::ChildStderr

§

impl UnwindSafe for rustmax::tokio::process::ChildStdin

§

impl UnwindSafe for rustmax::tokio::process::ChildStdout

§

impl UnwindSafe for TryCurrentError

§

impl UnwindSafe for SignalKind

§

impl UnwindSafe for rustmax::tokio::sync::oneshot::error::RecvError

§

impl UnwindSafe for AcquireError

§

impl UnwindSafe for rustmax::tokio::sync::BarrierWaitResult

§

impl UnwindSafe for rustmax::tokio::sync::TryLockError

§

impl UnwindSafe for rustmax::tokio::sync::watch::error::RecvError

§

impl UnwindSafe for rustmax::tokio::task::Id

§

impl UnwindSafe for rustmax::tokio::time::error::Elapsed

§

impl UnwindSafe for rustmax::tokio::time::error::Error

§

impl UnwindSafe for rustmax::tokio::time::Instant

§

impl UnwindSafe for rustmax::toml::de::Error

§

impl UnwindSafe for rustmax::toml::map::IntoIter

§

impl UnwindSafe for rustmax::toml::ser::Error

§

impl UnwindSafe for rustmax::toml::value::Date

§

impl UnwindSafe for Datetime

§

impl UnwindSafe for DatetimeParseError

§

impl UnwindSafe for rustmax::toml::value::Time

§

impl UnwindSafe for Closed

§

impl UnwindSafe for rustmax::tower::layer::util::Identity

§

impl UnwindSafe for Rate

§

impl UnwindSafe for ConcurrencyLimitLayer

§

impl UnwindSafe for RateLimitLayer

§

impl UnwindSafe for Cost

§

impl UnwindSafe for rustmax::tower::load::peak_ewma::Handle

§

impl UnwindSafe for rustmax::tower::load::pending_requests::Count

§

impl UnwindSafe for rustmax::tower::load::pending_requests::Handle

§

impl UnwindSafe for CompleteOnResponse

§

impl UnwindSafe for Overloaded

§

impl UnwindSafe for LoadShedLayer

§

impl UnwindSafe for InvalidBackoff

§

impl UnwindSafe for TpsBudget

§

impl UnwindSafe for SpawnReadyLayer

§

impl UnwindSafe for rustmax::tower::timeout::error::Elapsed

§

impl UnwindSafe for TimeoutLayer

§

impl UnwindSafe for None

§

impl UnwindSafe for GraphemeCursor

§

impl UnwindSafe for OpaqueOrigin

§

impl UnwindSafe for Url

§

impl UnwindSafe for rustmax::walkdir::DirEntry

§

impl UnwindSafe for rustmax::xshell::TempDir

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Global

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for System

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for 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 rustmax::std::ascii::EscapeDefault

§

impl UnwindSafe for rustmax::std::backtrace::Backtrace

§

impl UnwindSafe for rustmax::std::backtrace::BacktraceFrame

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for rustmax::std::char::EscapeDebug

§

impl UnwindSafe for rustmax::std::char::EscapeDefault

§

impl UnwindSafe for rustmax::std::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for UnorderedKeyError

§

impl UnwindSafe for TryReserveError

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for CStr

§

impl UnwindSafe for CString

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for FromVecWithNulError

§

impl UnwindSafe for IntoStringError

§

impl UnwindSafe for NulError

§

impl UnwindSafe for rustmax::std::ffi::OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for rustmax::std::fmt::Error

§

impl UnwindSafe for rustmax::std::fs::DirBuilder

§

impl UnwindSafe for rustmax::std::fs::DirEntry

§

impl UnwindSafe for rustmax::std::fs::File

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for FileType

§

impl UnwindSafe for rustmax::std::fs::Metadata

§

impl UnwindSafe for rustmax::std::fs::OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for rustmax::std::fs::ReadDir

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for rustmax::std::hash::RandomState

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

impl UnwindSafe for rustmax::std::io::Empty

§

impl UnwindSafe for rustmax::std::io::Repeat

§

impl UnwindSafe for rustmax::std::io::Sink

§

impl UnwindSafe for rustmax::std::io::Stdin

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for rustmax::std::net::TcpListener

§

impl UnwindSafe for rustmax::std::net::TcpStream

§

impl UnwindSafe for rustmax::std::net::UdpSocket

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for OwnedFd

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for rustmax::std::os::linux::raw::stat

§

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

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for rustmax::std::os::unix::net::UCred

§

impl UnwindSafe for rustmax::std::os::unix::net::UnixDatagram

§

impl UnwindSafe for rustmax::std::os::unix::net::UnixListener

§

impl UnwindSafe for rustmax::std::os::unix::net::UnixStream

§

impl UnwindSafe for rustmax::std::path::Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for PipeReader

§

impl UnwindSafe for PipeWriter

§

impl UnwindSafe for rustmax::std::process::Child

§

impl UnwindSafe for rustmax::std::process::ChildStderr

§

impl UnwindSafe for rustmax::std::process::ChildStdin

§

impl UnwindSafe for rustmax::std::process::ChildStdout

§

impl UnwindSafe for ExitCode

§

impl UnwindSafe for ExitStatus

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for Output

§

impl UnwindSafe for Stdio

§

impl UnwindSafe for rustmax::std::ptr::Alignment

§

impl UnwindSafe for DefaultRandomSource

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for FromUtf8Error

§

impl UnwindSafe for FromUtf16Error

§

impl UnwindSafe for String

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for rustmax::std::sync::mpsc::RecvError

§

impl UnwindSafe for rustmax::std::sync::Barrier

§

impl UnwindSafe for rustmax::std::sync::BarrierWaitResult

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for LocalWaker

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for rustmax::std::thread::Builder

§

impl UnwindSafe for Thread

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for Duration

§

impl UnwindSafe for rustmax::std::time::Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for SystemTimeError

§

impl UnwindSafe for TryFromFloatSecsError

§

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 Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for InvertedUTerm

§

impl UnwindSafe for LitKind

§

impl UnwindSafe for MustAbort

§

impl UnwindSafe for Number

§

impl UnwindSafe for PanicMessage

§

impl UnwindSafe for ProcMacro

§

impl UnwindSafe for SameThread

§

impl UnwindSafe for Sign

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

impl<'a> !UnwindSafe for rustmax::serde_json::map::Entry<'a>

§

impl<'a> !UnwindSafe for rustmax::toml::map::Entry<'a>

§

impl<'a> !UnwindSafe for rustmax::anyhow::Chain<'a>

§

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

§

impl<'a> !UnwindSafe for rustmax::crossbeam::channel::Select<'a>

§

impl<'a> !UnwindSafe for rustmax::hyper::rt::ReadBuf<'a>

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for rustmax::serde_json::map::IterMut<'a>

§

impl<'a> !UnwindSafe for rustmax::serde_json::map::OccupiedEntry<'a>

§

impl<'a> !UnwindSafe for rustmax::serde_json::map::VacantEntry<'a>

§

impl<'a> !UnwindSafe for rustmax::serde_json::map::ValuesMut<'a>

§

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

§

impl<'a> !UnwindSafe for rustmax::tokio::io::ReadBuf<'a>

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for rustmax::toml::map::IterMut<'a>

§

impl<'a> !UnwindSafe for rustmax::toml::map::OccupiedEntry<'a>

§

impl<'a> !UnwindSafe for rustmax::toml::map::VacantEntry<'a>

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for rustmax::std::error::Request<'a>

§

impl<'a> !UnwindSafe for rustmax::std::fmt::Formatter<'a>

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for BytesOrWideString<'a>

§

impl<'a> UnwindSafe for rustmax::chrono::format::Item<'a>

§

impl<'a> UnwindSafe for IndexVecIter<'a>

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for RawPathParamsIter<'a>

§

impl<'a> UnwindSafe for SymbolName<'a>

§

impl<'a> UnwindSafe for AttributeInfo<'a>

§

impl<'a> UnwindSafe for DeriveInfo<'a>

§

impl<'a> UnwindSafe for FieldInfo<'a>

§

impl<'a> UnwindSafe for ItemInfo<'a>

§

impl<'a> UnwindSafe for StrftimeItems<'a>

§

impl<'a> UnwindSafe for IdsRef<'a>

§

impl<'a> UnwindSafe for Indices<'a>

§

impl<'a> UnwindSafe for RawValues<'a>

§

impl<'a> UnwindSafe for rustmax::core::ffi::c_str::Bytes<'a>

§

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

§

impl<'a> UnwindSafe for rustmax::core::panic::PanicMessage<'a>

§

impl<'a> UnwindSafe for SelectedOperation<'a>

§

impl<'a> UnwindSafe for Env<'a>

§

impl<'a> UnwindSafe for WakerRef<'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 rustmax::log::Metadata<'a>

§

impl<'a> UnwindSafe for MetadataBuilder<'a>

§

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

§

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

§

impl<'a> UnwindSafe for MimeIter<'a>

§

impl<'a> UnwindSafe for rustmax::mime::Name<'a>

§

impl<'a> UnwindSafe for Params<'a>

§

impl<'a> UnwindSafe for U32Digits<'a>

§

impl<'a> UnwindSafe for U64Digits<'a>

§

impl<'a> UnwindSafe for CharStrategy<'a>

§

impl<'a> UnwindSafe for rustmax::regex::bytes::SetMatchesIter<'a>

§

impl<'a> UnwindSafe for rustmax::regex::SetMatchesIter<'a>

§

impl<'a> UnwindSafe for Attempt<'a>

§

impl<'a> UnwindSafe for SearchResult<'a>

§

impl<'a> UnwindSafe for SliceRead<'a>

§

impl<'a> UnwindSafe for StrRead<'a>

§

impl<'a> UnwindSafe for rustmax::serde_json::map::Iter<'a>

§

impl<'a> UnwindSafe for rustmax::serde_json::map::Keys<'a>

§

impl<'a> UnwindSafe for rustmax::serde_json::map::Values<'a>

§

impl<'a> UnwindSafe for PrettyFormatter<'a>

§

impl<'a> UnwindSafe for rustmax::syn::buffer::Cursor<'a>

§

impl<'a> UnwindSafe for ParseNestedMeta<'a>

§

impl<'a> UnwindSafe for Lookahead1<'a>

§

impl<'a> UnwindSafe for ImplGenerics<'a>

§

impl<'a> UnwindSafe for Turbofish<'a>

§

impl<'a> UnwindSafe for TypeGenerics<'a>

§

impl<'a> UnwindSafe for HyperlinkSpec<'a>

§

impl<'a> UnwindSafe for StandardStreamLock<'a>

§

impl<'a> UnwindSafe for rustmax::tokio::net::tcp::ReadHalf<'a>

§

impl<'a> UnwindSafe for rustmax::tokio::net::tcp::WriteHalf<'a>

§

impl<'a> UnwindSafe for rustmax::tokio::net::unix::ReadHalf<'a>

§

impl<'a> UnwindSafe for rustmax::tokio::net::unix::WriteHalf<'a>

§

impl<'a> UnwindSafe for ValueDeserializer<'a>

§

impl<'a> UnwindSafe for rustmax::toml::map::Iter<'a>

§

impl<'a> UnwindSafe for rustmax::toml::map::Keys<'a>

§

impl<'a> UnwindSafe for rustmax::toml::map::Values<'a>

§

impl<'a> UnwindSafe for rustmax::toml::Deserializer<'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 ByteSerialize<'a>

§

impl<'a> UnwindSafe for Parse<'a>

§

impl<'a> UnwindSafe for ParseIntoOwned<'a>

§

impl<'a> UnwindSafe for rustmax::xshell::Cmd<'a>

§

impl<'a> UnwindSafe for PushDir<'a>

§

impl<'a> UnwindSafe for PushEnv<'a>

§

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

§

impl<'a> UnwindSafe for rustmax::std::ffi::os_str::Display<'a>

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for rustmax::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 Ancestors<'a>

§

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

§

impl<'a> UnwindSafe for rustmax::std::path::Display<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for rustmax::std::str::CharIndices<'a>

§

impl<'a> UnwindSafe for rustmax::std::str::Chars<'a>

§

impl<'a> UnwindSafe for rustmax::std::str::EncodeUtf16<'a>

§

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

§

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

§

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

§

impl<'a> UnwindSafe for rustmax::std::str::Lines<'a>

§

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

§

impl<'a> UnwindSafe for rustmax::std::str::SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for rustmax::std::str::SplitWhitespace<'a>

§

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

§

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

§

impl<'a> UnwindSafe for rustmax::std::string::Drain<'a>

§

impl<'a> UnwindSafe for rustmax::std::task::Context<'a>

§

impl<'a> UnwindSafe for rustmax::std::panic::Location<'a>

§

impl<'a> UnwindSafe for BridgeConfig<'a>

§

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

§

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

§

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

§

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 rustmax::tempfile::Builder<'a, 'b>

§

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

§

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

§

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

§

impl<'a, 'e, E> UnwindSafe for Base64Display<'a, 'e, E>
where E: RefUnwindSafe,

§

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

§

impl<'a, A> !UnwindSafe for rustmax::std::option::IterMut<'a, A>

§

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

§

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

§

impl<'a, B, S = ()> !UnwindSafe for RouterAsService<'a, B, S>

§

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 StrDeserializer<'a, E>
where E: UnwindSafe,

§

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

§

impl<'a, F, O> !UnwindSafe for Fill<'a, F, O>

§

impl<'a, Fut> !UnwindSafe for rustmax::futures::prelude::stream::futures_unordered::Iter<'a, Fut>

§

impl<'a, Fut> !UnwindSafe for rustmax::futures::prelude::stream::futures_unordered::IterMut<'a, Fut>

§

impl<'a, Fut> !UnwindSafe for IterPinMut<'a, Fut>

§

impl<'a, Fut> !UnwindSafe for IterPinRef<'a, Fut>

§

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

§

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

§

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

§

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

§

impl<'a, I, A> UnwindSafe for 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 rustmax::std::collections::btree_set::Cursor<'a, K>
where K: RefUnwindSafe,

§

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

§

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

§

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

§

impl<'a, K, A = Global> !UnwindSafe for rustmax::std::collections::btree_set::CursorMutKey<'a, K, A>

§

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

§

impl<'a, K, I, F> !UnwindSafe for rustmax::itertools::Group<'a, K, I, F>

§

impl<'a, K, I, F> !UnwindSafe for Groups<'a, K, I, F>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, K, V> UnwindSafe for rustmax::std::collections::hash_map::Drain<'a, K, V>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, L> UnwindSafe for IncomingStream<'a, L>
where <L as Listener>::Addr: UnwindSafe, <L as Listener>::Io: RefUnwindSafe,

§

impl<'a, M, Request> !UnwindSafe for AsService<'a, M, Request>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, R> !UnwindSafe for rustmax::regex::bytes::ReplacerRef<'a, R>

§

impl<'a, R> !UnwindSafe for rustmax::regex::ReplacerRef<'a, R>

§

impl<'a, R, W> !UnwindSafe for Copy<'a, R, W>

§

impl<'a, R, W> !UnwindSafe for CopyBuf<'a, R, W>

§

impl<'a, R, W> !UnwindSafe for CopyBufAbortable<'a, R, W>

§

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

§

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

§

impl<'a, Si, Item> !UnwindSafe for rustmax::futures::prelude::sink::Close<'a, Si, Item>

§

impl<'a, Si, Item> !UnwindSafe for Feed<'a, Si, Item>

§

impl<'a, Si, Item> !UnwindSafe for rustmax::futures::prelude::sink::Flush<'a, Si, Item>

§

impl<'a, Si, Item> !UnwindSafe for Send<'a, Si, Item>

§

impl<'a, Si, St> !UnwindSafe for SendAll<'a, Si, St>

§

impl<'a, St> !UnwindSafe for rustmax::futures::prelude::stream::select_all::Iter<'a, St>

§

impl<'a, St> !UnwindSafe for rustmax::futures::prelude::stream::select_all::IterMut<'a, St>

§

impl<'a, St> !UnwindSafe for rustmax::futures::prelude::stream::Next<'a, St>

§

impl<'a, St> !UnwindSafe for rustmax::futures::prelude::stream::Peek<'a, St>

§

impl<'a, St> !UnwindSafe for rustmax::futures::prelude::stream::PeekMut<'a, St>

§

impl<'a, St> !UnwindSafe for SelectNextSome<'a, St>

§

impl<'a, St> !UnwindSafe for TryNext<'a, St>

§

impl<'a, St, F> !UnwindSafe for NextIf<'a, St, F>

§

impl<'a, St, T> !UnwindSafe for NextIfEq<'a, St, T>

§

impl<'a, T> !UnwindSafe for rustmax::reqwest::header::Entry<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for rustmax::cxx_build::vector::IterMut<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for rustmax::futures::lock::MutexGuard<'a, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> !UnwindSafe for rustmax::reqwest::header::Drain<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::reqwest::header::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::reqwest::header::OccupiedEntry<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::reqwest::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 rustmax::reqwest::header::ValuesMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::syn::punctuated::Iter<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::syn::punctuated::IterMut<'a, T>

§

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

§

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

§

impl<'a, T> !UnwindSafe for rustmax::tokio::sync::MappedMutexGuard<'a, T>

§

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

§

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

§

impl<'a, T> !UnwindSafe for rustmax::tokio::sync::RwLockReadGuard<'a, T>

§

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

§

impl<'a, T> !UnwindSafe for rustmax::tokio::sync::watch::Ref<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::url::form_urlencoded::Serializer<'a, T>

§

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

§

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

§

impl<'a, T> !UnwindSafe for rustmax::std::result::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::std::slice::ChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::std::slice::ChunksMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::std::slice::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::std::slice::RChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::std::slice::RChunksMut<'a, T>

§

impl<'a, T> !UnwindSafe for rustmax::std::sync::MappedMutexGuard<'a, T>

§

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

§

impl<'a, T> UnwindSafe for rustmax::crossbeam::channel::Iter<'a, T>

§

impl<'a, T> UnwindSafe for rustmax::crossbeam::channel::TryIter<'a, T>

§

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

§

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

§

impl<'a, T> UnwindSafe for rustmax::cxx_build::vector::Iter<'a, T>
where T: RefUnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> UnwindSafe for rustmax::reqwest::header::Iter<'a, T>
where T: RefUnwindSafe,

§

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

§

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

§

impl<'a, T> UnwindSafe for rustmax::reqwest::header::Values<'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 rustmax::std::collections::binary_heap::Iter<'a, T>
where T: RefUnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> UnwindSafe for rustmax::std::result::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustmax::std::slice::Chunks<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustmax::std::slice::ChunksExact<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustmax::std::slice::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustmax::std::slice::RChunks<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustmax::std::slice::RChunksExact<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustmax::std::slice::Windows<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for rustmax::std::sync::mpmc::Iter<'a, T>

§

impl<'a, T> UnwindSafe for rustmax::std::sync::mpmc::TryIter<'a, T>

§

impl<'a, T> UnwindSafe for rustmax::std::sync::mpsc::Iter<'a, T>

§

impl<'a, T> UnwindSafe for rustmax::std::sync::mpsc::TryIter<'a, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T, A = Global> !UnwindSafe for rustmax::std::collections::binary_heap::PeekMut<'a, T, A>

§

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

§

impl<'a, T, A> UnwindSafe for rustmax::std::collections::binary_heap::Drain<'a, T, A>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T, P> !UnwindSafe for rustmax::std::slice::SplitMut<'a, T, P>

§

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

§

impl<'a, T, P> UnwindSafe for Pairs<'a, T, P>

§

impl<'a, T, P> UnwindSafe for rustmax::std::slice::ChunkBy<'a, T, P>

§

impl<'a, T, P> UnwindSafe for rustmax::std::slice::RSplit<'a, T, P>

§

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

§

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

§

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

§

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

§

impl<'a, T, Request> !UnwindSafe for rustmax::tower::util::Ready<'a, T, Request>

§

impl<'a, T, S> !UnwindSafe for rustmax::std::collections::hash_set::Entry<'a, T, S>

§

impl<'a, T, S> !UnwindSafe for rustmax::std::collections::hash_set::OccupiedEntry<'a, T, S>

§

impl<'a, T, S> !UnwindSafe for rustmax::std::collections::hash_set::VacantEntry<'a, T, S>

§

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

§

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

§

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

§

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

§

impl<'a, T, U> !UnwindSafe for rustmax::futures::lock::MappedMutexGuard<'a, T, U>

§

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

§

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

§

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

§

impl<'a, W> !UnwindSafe for rustmax::futures::io::Close<'a, W>

§

impl<'a, W> !UnwindSafe for rustmax::futures::io::Flush<'a, W>

§

impl<'a, W> !UnwindSafe for Write<'a, W>

§

impl<'a, W> !UnwindSafe for WriteAll<'a, W>

§

impl<'a, W> !UnwindSafe for WriteVectored<'a, W>

§

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

§

impl<'addr, 'bufs, 'control> !UnwindSafe for MsgHdrMut<'addr, 'bufs, 'control>

§

impl<'addr, 'bufs, 'control> UnwindSafe for MsgHdr<'addr, 'bufs, 'control>

§

impl<'b, T> !UnwindSafe for rustmax::std::cell::Ref<'b, T>

§

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

§

impl<'c, 'a> UnwindSafe for StepCursor<'c, 'a>

§

impl<'c, 'h> UnwindSafe for rustmax::regex::bytes::SubCaptureMatches<'c, 'h>

§

impl<'c, 'h> UnwindSafe for rustmax::regex::SubCaptureMatches<'c, 'h>

§

impl<'ch> UnwindSafe for rustmax::rayon::str::Bytes<'ch>

§

impl<'ch> UnwindSafe for rustmax::rayon::str::CharIndices<'ch>

§

impl<'ch> UnwindSafe for rustmax::rayon::str::Chars<'ch>

§

impl<'ch> UnwindSafe for rustmax::rayon::str::EncodeUtf16<'ch>

§

impl<'ch> UnwindSafe for rustmax::rayon::str::Lines<'ch>

§

impl<'ch> UnwindSafe for rustmax::rayon::str::SplitAsciiWhitespace<'ch>

§

impl<'ch> UnwindSafe for rustmax::rayon::str::SplitWhitespace<'ch>

§

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

§

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

§

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

§

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

§

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

§

impl<'d> !UnwindSafe for ValueSerializer<'d>

§

impl<'d> !UnwindSafe for rustmax::toml::Serializer<'d>

§

impl<'d> UnwindSafe for TimeZoneName<'d>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'de> UnwindSafe for rustmax::json5::Deserializer<'de>

§

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

§

impl<'de, E> UnwindSafe for BorrowedStrDeserializer<'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, R, T> UnwindSafe for StreamDeserializer<'de, R, T>
where R: UnwindSafe, T: UnwindSafe,

§

impl<'e, E, R> UnwindSafe for DecoderReader<'e, E, R>

§

impl<'e, E, S> UnwindSafe for EncoderStringWriter<'e, E, S>

§

impl<'e, E, W> UnwindSafe for EncoderWriter<'e, E, W>

§

impl<'env> !UnwindSafe for rustmax::crossbeam::thread::Scope<'env>

§

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

§

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

§

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

§

impl<'fmt, 'a, 'b> !UnwindSafe for BacktraceFrameFmt<'fmt, 'a, 'b>

§

impl<'g, T> UnwindSafe for rustmax::crossbeam::epoch::Shared<'g, T>
where T: RefUnwindSafe + ?Sized,

§

impl<'g, T, P> UnwindSafe for CompareExchangeError<'g, T, P>
where P: UnwindSafe, T: RefUnwindSafe + ?Sized,

§

impl<'h> !UnwindSafe for rustmax::rustyline::Context<'h>

§

impl<'h> UnwindSafe for rustmax::regex::bytes::Captures<'h>

§

impl<'h> UnwindSafe for rustmax::regex::bytes::Match<'h>

§

impl<'h> UnwindSafe for rustmax::regex::Captures<'h>

§

impl<'h> UnwindSafe for rustmax::regex::Match<'h>

§

impl<'i> !UnwindSafe for ValidationContext<'i>

§

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<'r> !UnwindSafe for EventContext<'r>

§

impl<'r> UnwindSafe for rustmax::regex::bytes::CaptureNames<'r>

§

impl<'r> UnwindSafe for rustmax::regex::CaptureNames<'r>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::bytes::CaptureMatches<'r, 'h>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::bytes::Matches<'r, 'h>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::bytes::Split<'r, 'h>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::bytes::SplitN<'r, 'h>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::CaptureMatches<'r, 'h>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::Matches<'r, 'h>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::Split<'r, 'h>

§

impl<'r, 'h> UnwindSafe for rustmax::regex::SplitN<'r, 'h>

§

impl<'s> UnwindSafe for rustmax::regex::bytes::NoExpand<'s>

§

impl<'s> UnwindSafe for rustmax::regex::NoExpand<'s>

§

impl<'s> UnwindSafe for SockRef<'s>

§

impl<'scope> !UnwindSafe for rustmax::rayon::Scope<'scope>

§

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

§

impl<'scope, 'env> !UnwindSafe for rustmax::std::thread::Scope<'scope, 'env>

§

impl<'scope, 'env> UnwindSafe for ScopedThreadBuilder<'scope, 'env>

§

impl<'scope, T> !UnwindSafe for rustmax::std::thread::ScopedJoinHandle<'scope, T>

§

impl<'scope, T> UnwindSafe for rustmax::crossbeam::thread::ScopedJoinHandle<'scope, T>

§

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

§

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

§

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

§

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

§

impl<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 rustmax::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 rustmax::std::iter::Repeat<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for rustmax::std::iter::RepeatN<A>
where A: UnwindSafe,

§

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

§

impl<A, B> UnwindSafe for rustmax::futures::prelude::future::Either<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

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

§

impl<A, B> UnwindSafe for rustmax::tower::util::Either<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

impl<A, B> UnwindSafe for rustmax::futures::prelude::future::Select<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

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

§

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

§

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

§

impl<A, B> UnwindSafe for rustmax::rayon::iter::ZipEq<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

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

§

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

§

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

§

impl<B> !UnwindSafe for rustmax::hyper::client::conn::http1::SendRequest<B>

§

impl<B> !UnwindSafe for rustmax::hyper::client::conn::http2::SendRequest<B>

§

impl<B> UnwindSafe for rustmax::bitflags::iter::Iter<B>

§

impl<B> UnwindSafe for IterNames<B>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<B, S = ()> !UnwindSafe for RouterIntoService<B, S>

§

impl<B, T, E, S> !UnwindSafe for rustmax::axum::middleware::future::FromExtractorResponseFuture<B, T, E, S>

§

impl<BlockSize, Kind> UnwindSafe for BlockBuffer<BlockSize, Kind>
where <BlockSize as ArrayLength<u8>>::ArrayType: UnwindSafe, Kind: UnwindSafe,

§

impl<D, C> UnwindSafe for PeakEwmaDiscover<D, C>
where D: UnwindSafe, C: UnwindSafe,

§

impl<D, C> UnwindSafe for PendingRequestsDiscover<D, C>
where D: UnwindSafe, C: UnwindSafe,

§

impl<D, F, T, S> UnwindSafe for rustmax::rand::distr::Map<D, F, T, S>
where D: UnwindSafe, F: UnwindSafe,

§

impl<D, R, T> UnwindSafe for rustmax::rand::distr::Iter<D, R, T>
where D: UnwindSafe, R: UnwindSafe, T: UnwindSafe,

§

impl<D, Req> !UnwindSafe for Balance<D, Req>

§

impl<D, Req> UnwindSafe for MakeBalanceLayer<D, Req>

§

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

§

impl<Dyn> !UnwindSafe for DynMetadata<Dyn>

§

impl<E = Infallible> !UnwindSafe for Route<E>

§

impl<E> !UnwindSafe for RouteFuture<E>

§

impl<E> !UnwindSafe for rustmax::hyper::server::conn::http2::Builder<E>

§

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

§

impl<E> UnwindSafe for rustmax::nom::bytes::Take<E>
where E: UnwindSafe,

§

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

§

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

§

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

§

impl<E> UnwindSafe for MultiSpace0<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 Report<E>
where E: UnwindSafe,

§

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

§

impl<E, S> UnwindSafe for FromExtractorLayer<E, S>
where S: UnwindSafe,

§

impl<Enum> UnwindSafe for TryFromPrimitiveError<Enum>

§

impl<Ex> !UnwindSafe for rustmax::hyper::client::conn::http2::Builder<Ex>

§

impl<F1, F2, N> UnwindSafe for AndThenFuture<F1, F2, N>
where F2: UnwindSafe, N: UnwindSafe, F1: UnwindSafe,

§

impl<F1, F2, N> UnwindSafe for ThenFuture<F1, F2, N>
where F2: UnwindSafe, F1: UnwindSafe, N: UnwindSafe,

§

impl<F = RichFormatter> !UnwindSafe for rustmax::clap::error::Error<F>

§

impl<F = File> !UnwindSafe for PersistError<F>

§

impl<F> !UnwindSafe for JoinAll<F>

§

impl<F> !UnwindSafe for TryJoinAll<F>

§

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

§

impl<F> UnwindSafe for rustmax::futures::prelude::future::Flatten<F>
where F: UnwindSafe, <F as Future>::Output: UnwindSafe,

§

impl<F> UnwindSafe for FlattenStream<F>
where F: UnwindSafe, <F as Future>::Output: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::futures::prelude::future::IntoStream<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::futures::prelude::future::Lazy<F>
where F: UnwindSafe,

§

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

§

impl<F> UnwindSafe for rustmax::futures::prelude::future::PollFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::futures::prelude::stream::PollFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::futures::prelude::stream::RepeatWith<F>
where F: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

impl<F> UnwindSafe for rustmax::nom::combinator::Not<F>
where F: UnwindSafe,

§

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

§

impl<F> UnwindSafe for rustmax::nom::combinator::Peek<F>
where F: UnwindSafe,

§

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

§

impl<F> UnwindSafe for rustmax::nom::error::Context<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::nom::multi::Count<F>
where F: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<F> UnwindSafe for rustmax::tower::load_shed::future::ResponseFuture<F>
where F: UnwindSafe,

§

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

§

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

§

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

§

impl<F> UnwindSafe for rustmax::tower::util::MapRequestLayer<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::tower::util::MapResponseLayer<F>
where F: UnwindSafe,

§

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

§

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

§

impl<F> UnwindSafe for rustmax::std::fmt::FromFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::std::future::PollFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for rustmax::std::iter::FromFn<F>
where F: UnwindSafe,

§

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

§

impl<F> UnwindSafe for rustmax::std::iter::RepeatWith<F>
where F: UnwindSafe,

§

impl<F, C, H> UnwindSafe for TrackCompletionFuture<F, C, H>
where F: UnwindSafe, C: UnwindSafe, H: UnwindSafe,

§

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

§

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

§

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

§

impl<F, E> UnwindSafe for rustmax::tower::reconnect::ResponseFuture<F, E>
where F: UnwindSafe, E: UnwindSafe,

§

impl<F, E> UnwindSafe for rustmax::tower::spawn_ready::future::ResponseFuture<F, E>
where F: UnwindSafe,

§

impl<F, G> UnwindSafe for SeparatedList0<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for SeparatedList1<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for Preceded<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for Terminated<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for rustmax::nom::And<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for rustmax::nom::AndThen<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for rustmax::nom::FlatMap<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for rustmax::nom::Map<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for MapOpt<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for MapRes<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G> UnwindSafe for rustmax::nom::Or<F, G>
where F: UnwindSafe, G: UnwindSafe,

§

impl<F, G, E> UnwindSafe for Escaped<F, G, E>
where F: UnwindSafe, G: UnwindSafe, E: UnwindSafe,

§

impl<F, G, E> UnwindSafe for LengthCount<F, G, E>
where F: UnwindSafe, G: UnwindSafe, E: UnwindSafe,

§

impl<F, G, E> UnwindSafe for LengthValue<F, G, E>
where F: UnwindSafe, G: UnwindSafe, E: UnwindSafe,

§

impl<F, G, E> UnwindSafe for ManyTill<F, G, E>
where F: UnwindSafe, G: UnwindSafe, E: UnwindSafe,

§

impl<F, G, E, ExtendItem, Output> UnwindSafe for EscapedTransform<F, G, E, ExtendItem, Output>
where F: UnwindSafe, G: UnwindSafe, E: UnwindSafe, ExtendItem: UnwindSafe, Output: UnwindSafe,

§

impl<F, G, H, Range> UnwindSafe for rustmax::nom::multi::Fold<F, G, H, Range>
where F: UnwindSafe, H: UnwindSafe, G: UnwindSafe, Range: UnwindSafe,

§

impl<F, G, Init, R> UnwindSafe for FoldMany0<F, G, Init, R>
where F: UnwindSafe, G: UnwindSafe, Init: UnwindSafe, R: UnwindSafe,

§

impl<F, G, Init, R> UnwindSafe for FoldMany1<F, G, Init, R>
where F: UnwindSafe, G: UnwindSafe, Init: UnwindSafe, R: UnwindSafe,

§

impl<F, G, Init, R> UnwindSafe for FoldManyMN<F, G, Init, R>
where F: UnwindSafe, G: UnwindSafe, Init: UnwindSafe, R: UnwindSafe,

§

impl<F, G, O2> UnwindSafe for Verify<F, G, O2>
where F: UnwindSafe, G: UnwindSafe, O2: UnwindSafe + ?Sized,

§

impl<F, MakeError> UnwindSafe for Satisfy<F, MakeError>
where F: UnwindSafe, MakeError: UnwindSafe,

§

impl<F, N> UnwindSafe for MapErrFuture<F, N>
where F: UnwindSafe, N: UnwindSafe,

§

impl<F, N> UnwindSafe for MapResponseFuture<F, N>
where F: UnwindSafe, N: UnwindSafe,

§

impl<F, N> UnwindSafe for MapResultFuture<F, N>
where F: UnwindSafe, N: UnwindSafe,

§

impl<F, O2, E2> UnwindSafe for Into<F, O2, E2>
where F: UnwindSafe, O2: UnwindSafe, E2: UnwindSafe,

§

impl<F, R, Collection> UnwindSafe for Many<F, R, Collection>
where F: UnwindSafe, R: UnwindSafe, Collection: UnwindSafe,

§

impl<F, Req> UnwindSafe for MakeFuture<F, Req>
where F: UnwindSafe,

§

impl<F, S> UnwindSafe for FutureService<F, S>
where F: UnwindSafe, S: UnwindSafe,

§

impl<F, S, I, T> UnwindSafe for rustmax::axum::middleware::FromFn<F, S, I, T>
where F: UnwindSafe, I: UnwindSafe, S: UnwindSafe,

§

impl<F, S, I, T> UnwindSafe for rustmax::axum::middleware::MapRequest<F, S, I, T>
where F: UnwindSafe, I: UnwindSafe, S: UnwindSafe,

§

impl<F, S, I, T> UnwindSafe for rustmax::axum::middleware::MapResponse<F, S, I, T>
where F: UnwindSafe, I: UnwindSafe, S: UnwindSafe,

§

impl<F, S, T> UnwindSafe for FromFnLayer<F, S, T>
where F: UnwindSafe, S: UnwindSafe,

§

impl<F, S, T> UnwindSafe for rustmax::axum::middleware::MapRequestLayer<F, S, T>
where F: UnwindSafe, S: UnwindSafe,

§

impl<F, S, T> UnwindSafe for rustmax::axum::middleware::MapResponseLayer<F, S, T>
where F: UnwindSafe, S: UnwindSafe,

§

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

§

impl<Failure, Error> UnwindSafe for Err<Failure, Error>
where Error: UnwindSafe, Failure: UnwindSafe,

§

impl<Fut1, Fut2> UnwindSafe for rustmax::futures::prelude::future::Join<Fut1, Fut2>
where Fut1: UnwindSafe, <Fut1 as Future>::Output: UnwindSafe, Fut2: UnwindSafe, <Fut2 as Future>::Output: UnwindSafe,

§

impl<Fut1, Fut2> UnwindSafe for rustmax::futures::prelude::future::TryFlatten<Fut1, Fut2>
where Fut1: UnwindSafe, Fut2: UnwindSafe,

§

impl<Fut1, Fut2> UnwindSafe for TryJoin<Fut1, Fut2>
where Fut1: UnwindSafe, <Fut1 as TryFuture>::Ok: UnwindSafe, Fut2: UnwindSafe, <Fut2 as TryFuture>::Ok: UnwindSafe,

§

impl<Fut1, Fut2, F> UnwindSafe for rustmax::futures::prelude::future::AndThen<Fut1, Fut2, F>
where Fut2: UnwindSafe, Fut1: UnwindSafe, F: UnwindSafe,

§

impl<Fut1, Fut2, F> UnwindSafe for rustmax::futures::prelude::future::OrElse<Fut1, Fut2, F>
where Fut2: UnwindSafe, Fut1: UnwindSafe, F: UnwindSafe,

§

impl<Fut1, Fut2, F> UnwindSafe for rustmax::futures::prelude::future::Then<Fut1, Fut2, F>
where Fut2: UnwindSafe, Fut1: UnwindSafe, F: UnwindSafe,

§

impl<Fut1, Fut2, Fut3> UnwindSafe for Join3<Fut1, Fut2, Fut3>
where Fut1: UnwindSafe, <Fut1 as Future>::Output: UnwindSafe, Fut2: UnwindSafe, <Fut2 as Future>::Output: UnwindSafe, Fut3: UnwindSafe, <Fut3 as Future>::Output: UnwindSafe,

§

impl<Fut1, Fut2, Fut3> UnwindSafe for TryJoin3<Fut1, Fut2, Fut3>
where Fut1: UnwindSafe, <Fut1 as TryFuture>::Ok: UnwindSafe, Fut2: UnwindSafe, <Fut2 as TryFuture>::Ok: UnwindSafe, Fut3: UnwindSafe, <Fut3 as TryFuture>::Ok: UnwindSafe,

§

impl<Fut1, Fut2, Fut3, Fut4> UnwindSafe for Join4<Fut1, Fut2, Fut3, Fut4>
where Fut1: UnwindSafe, <Fut1 as Future>::Output: UnwindSafe, Fut2: UnwindSafe, <Fut2 as Future>::Output: UnwindSafe, Fut3: UnwindSafe, <Fut3 as Future>::Output: UnwindSafe, Fut4: UnwindSafe, <Fut4 as Future>::Output: UnwindSafe,

§

impl<Fut1, Fut2, Fut3, Fut4> UnwindSafe for TryJoin4<Fut1, Fut2, Fut3, Fut4>
where Fut1: UnwindSafe, <Fut1 as TryFuture>::Ok: UnwindSafe, Fut2: UnwindSafe, <Fut2 as TryFuture>::Ok: UnwindSafe, Fut3: UnwindSafe, <Fut3 as TryFuture>::Ok: UnwindSafe, Fut4: UnwindSafe, <Fut4 as TryFuture>::Ok: UnwindSafe,

§

impl<Fut1, Fut2, Fut3, Fut4, Fut5> UnwindSafe for Join5<Fut1, Fut2, Fut3, Fut4, Fut5>
where Fut1: UnwindSafe, <Fut1 as Future>::Output: UnwindSafe, Fut2: UnwindSafe, <Fut2 as Future>::Output: UnwindSafe, Fut3: UnwindSafe, <Fut3 as Future>::Output: UnwindSafe, Fut4: UnwindSafe, <Fut4 as Future>::Output: UnwindSafe, Fut5: UnwindSafe, <Fut5 as Future>::Output: UnwindSafe,

§

impl<Fut1, Fut2, Fut3, Fut4, Fut5> UnwindSafe for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>
where Fut1: UnwindSafe, <Fut1 as TryFuture>::Ok: UnwindSafe, Fut2: UnwindSafe, <Fut2 as TryFuture>::Ok: UnwindSafe, Fut3: UnwindSafe, <Fut3 as TryFuture>::Ok: UnwindSafe, Fut4: UnwindSafe, <Fut4 as TryFuture>::Ok: UnwindSafe, Fut5: UnwindSafe, <Fut5 as TryFuture>::Ok: UnwindSafe,

§

impl<Fut> !UnwindSafe for Remote<Fut>

§

impl<Fut> !UnwindSafe for rustmax::futures::prelude::future::Shared<Fut>

§

impl<Fut> !UnwindSafe for WeakShared<Fut>

§

impl<Fut> !UnwindSafe for rustmax::futures::prelude::stream::futures_unordered::IntoIter<Fut>

§

impl<Fut> !UnwindSafe for FuturesUnordered<Fut>

§

impl<Fut> UnwindSafe for MaybeDone<Fut>
where Fut: UnwindSafe, <Fut as Future>::Output: UnwindSafe,

§

impl<Fut> UnwindSafe for TryMaybeDone<Fut>
where Fut: UnwindSafe, <Fut as TryFuture>::Ok: UnwindSafe,

§

impl<Fut> UnwindSafe for rustmax::futures::prelude::future::CatchUnwind<Fut>
where Fut: UnwindSafe,

§

impl<Fut> UnwindSafe for rustmax::futures::prelude::future::Fuse<Fut>
where Fut: UnwindSafe,

§

impl<Fut> UnwindSafe for IntoFuture<Fut>
where Fut: UnwindSafe,

§

impl<Fut> UnwindSafe for NeverError<Fut>
where Fut: UnwindSafe,

§

impl<Fut> UnwindSafe for rustmax::futures::prelude::future::SelectAll<Fut>
where Fut: UnwindSafe,

§

impl<Fut> UnwindSafe for SelectOk<Fut>
where Fut: UnwindSafe,

§

impl<Fut> UnwindSafe for TryFlattenStream<Fut>
where Fut: UnwindSafe, <Fut as TryFuture>::Ok: UnwindSafe,

§

impl<Fut> UnwindSafe for rustmax::futures::prelude::future::UnitError<Fut>
where Fut: UnwindSafe,

§

impl<Fut> UnwindSafe for rustmax::futures::prelude::stream::Once<Fut>
where Fut: UnwindSafe,

§

impl<Fut, E> UnwindSafe for rustmax::futures::prelude::future::ErrInto<Fut, E>
where Fut: UnwindSafe,

§

impl<Fut, E> UnwindSafe for OkInto<Fut, E>
where Fut: UnwindSafe,

§

impl<Fut, F> UnwindSafe for rustmax::futures::prelude::future::Inspect<Fut, F>
where Fut: UnwindSafe, F: UnwindSafe,

§

impl<Fut, F> UnwindSafe for rustmax::futures::prelude::future::InspectErr<Fut, F>
where Fut: UnwindSafe, F: UnwindSafe,

§

impl<Fut, F> UnwindSafe for rustmax::futures::prelude::future::InspectOk<Fut, F>
where Fut: UnwindSafe, F: UnwindSafe,

§

impl<Fut, F> UnwindSafe for rustmax::futures::prelude::future::Map<Fut, F>
where Fut: UnwindSafe, F: UnwindSafe,

§

impl<Fut, F> UnwindSafe for rustmax::futures::prelude::future::MapErr<Fut, F>
where Fut: UnwindSafe, F: UnwindSafe,

§

impl<Fut, F> UnwindSafe for rustmax::futures::prelude::future::MapOk<Fut, F>
where Fut: UnwindSafe, F: UnwindSafe,

§

impl<Fut, F> UnwindSafe for UnwrapOrElse<Fut, F>
where Fut: UnwindSafe, F: UnwindSafe,

§

impl<Fut, F, G> UnwindSafe for MapOkOrElse<Fut, F, G>
where Fut: UnwindSafe, F: UnwindSafe, G: UnwindSafe,

§

impl<Fut, Si> UnwindSafe for FlattenSink<Fut, Si>
where Fut: UnwindSafe, Si: UnwindSafe,

§

impl<Fut, T> UnwindSafe for rustmax::futures::prelude::future::MapInto<Fut, T>
where Fut: UnwindSafe,

§

impl<H> UnwindSafe for HasherRng<H>
where H: UnwindSafe,

§

impl<H> UnwindSafe for BuildHasherDefault<H>

§

impl<H, I> !UnwindSafe for Editor<H, I>

§

impl<H, T, S> UnwindSafe for HandlerService<H, T, S>
where H: UnwindSafe, S: UnwindSafe,

§

impl<I> !UnwindSafe for RcIter<I>

§

impl<I> !UnwindSafe for Tee<I>

§

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

§

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

§

impl<I> UnwindSafe for rustmax::futures::prelude::stream::Iter<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 rustmax::itertools::WhileSome<I>
where I: UnwindSafe,

§

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

§

impl<I> UnwindSafe for rustmax::nom::error::Error<I>
where I: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I> UnwindSafe for rustmax::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 rustmax::rayon::iter::Rev<I>
where I: UnwindSafe,

§

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

§

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

§

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

§

impl<I> UnwindSafe for rustmax::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 rustmax::rayon::iter::WhileSome<I>
where I: UnwindSafe,

§

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

§

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

§

impl<I> UnwindSafe for rustmax::std::iter::Cloned<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for rustmax::std::iter::Copied<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for rustmax::std::iter::Cycle<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for rustmax::std::iter::Enumerate<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for rustmax::std::iter::Flatten<I>

§

impl<I> UnwindSafe for rustmax::std::iter::Fuse<I>
where I: UnwindSafe,

§

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

§

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

§

impl<I> UnwindSafe for rustmax::std::iter::Skip<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for rustmax::std::iter::StepBy<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for rustmax::std::iter::Take<I>
where I: UnwindSafe,

§

impl<I, E> UnwindSafe for SeqDeserializer<I, E>
where E: UnwindSafe, I: UnwindSafe,

§

impl<I, E, F> UnwindSafe for ParserIterator<I, E, F>
where F: UnwindSafe, I: UnwindSafe, E: UnwindSafe,

§

impl<I, ElemF> UnwindSafe for rustmax::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 rustmax::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 rustmax::itertools::Update<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for rustmax::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 rustmax::rayon::iter::Inspect<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for rustmax::rayon::iter::Map<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for rustmax::rayon::iter::Update<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for rustmax::std::iter::FilterMap<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for rustmax::std::iter::Inspect<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for rustmax::std::iter::Map<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 rustmax::std::iter::IntersperseWith<I, G>
where G: UnwindSafe, <I as Iterator>::Item: UnwindSafe, I: UnwindSafe,

§

impl<I, ID, F> UnwindSafe for rustmax::rayon::iter::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 rustmax::itertools::Interleave<I, J>
where I: UnwindSafe, J: UnwindSafe,

§

impl<I, J> UnwindSafe for rustmax::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 rustmax::itertools::ZipEq<I, J>
where I: UnwindSafe, J: UnwindSafe,

§

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

§

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

§

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

§

impl<I, O> UnwindSafe for Client<I, O>

§

impl<I, P> UnwindSafe for rustmax::rayon::iter::Filter<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for rustmax::rayon::iter::FilterMap<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for rustmax::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 FilterEntry<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for rustmax::std::iter::Filter<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for MapWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for rustmax::std::iter::SkipWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for rustmax::std::iter::TakeWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, St, F> UnwindSafe for rustmax::std::iter::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 rustmax::std::iter::FlatMap<I, U, F>

§

impl<I, U, ID, F> UnwindSafe for rustmax::rayon::iter::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 rustmax::std::iter::ArrayChunks<I, N>
where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<IU, B> UnwindSafe for InvertedUInt<IU, B>
where IU: UnwindSafe, B: UnwindSafe,

§

impl<Idx> UnwindSafe for rustmax::core::range::Range<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for rustmax::core::range::RangeFrom<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for rustmax::core::range::RangeInclusive<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for rustmax::std::ops::Range<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for rustmax::std::ops::RangeFrom<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for rustmax::std::ops::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, T, U, E> !UnwindSafe for BoxCloneServiceLayer<In, T, U, E>

§

impl<In, T, U, E> !UnwindSafe for BoxCloneSyncServiceLayer<In, T, U, E>

§

impl<In, T, U, E> !UnwindSafe for BoxLayer<In, T, U, E>

§

impl<Inner, Outer> UnwindSafe for Stack<Inner, Outer>
where Inner: UnwindSafe, Outer: UnwindSafe,

§

impl<Iter> UnwindSafe for IterBridge<Iter>
where Iter: UnwindSafe,

§

impl<K> !UnwindSafe for Failed<K>

§

impl<K> UnwindSafe for rustmax::std::collections::hash_set::IntoIter<K>

§

impl<K, I, F> UnwindSafe for rustmax::itertools::ChunkBy<K, I, F>

§

impl<K, S, Req> !UnwindSafe for ReadyCache<K, S, Req>

§

impl<K, V> UnwindSafe for Change<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for BTreeMapStrategy<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for BTreeMapValueTree<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for HashMapStrategy<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for HashMapValueTree<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for rustmax::rayon::collections::btree_map::IntoIter<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for rustmax::rayon::collections::hash_map::IntoIter<K, V>
where K: UnwindSafe, V: UnwindSafe,

§

impl<K, V> UnwindSafe for rustmax::tera::Map<K, V>

§

impl<K, V> UnwindSafe for rustmax::toml::map::Map<K, V>

§

impl<K, V> UnwindSafe for rustmax::std::collections::hash_map::IntoIter<K, V>

§

impl<K, V> UnwindSafe for rustmax::std::collections::hash_map::IntoKeys<K, V>

§

impl<K, V> UnwindSafe for rustmax::std::collections::hash_map::IntoValues<K, V>

§

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

§

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

§

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

§

impl<L> UnwindSafe for ServiceBuilder<L>
where L: UnwindSafe,

§

impl<L, F> UnwindSafe for TapIo<L, F>
where L: UnwindSafe, F: UnwindSafe,

§

impl<L, H, T, S> UnwindSafe for Layered<L, H, T, S>
where L: UnwindSafe, H: UnwindSafe,

§

impl<L, M, S> UnwindSafe for Serve<L, M, S>
where L: UnwindSafe, M: UnwindSafe, S: UnwindSafe,

§

impl<L, M, S, F> UnwindSafe for WithGracefulShutdown<L, M, S, F>

§

impl<L, R> UnwindSafe for rustmax::rayon::iter::Either<L, R>
where L: UnwindSafe, R: UnwindSafe,

§

impl<M, EM, S> UnwindSafe for OutputM<M, EM, S>
where M: UnwindSafe, EM: UnwindSafe, S: UnwindSafe,

§

impl<M, Request> UnwindSafe for IntoService<M, Request>
where M: UnwindSafe, Request: UnwindSafe,

§

impl<M, Target> UnwindSafe for Reconnect<M, Target>
where M: UnwindSafe, Target: UnwindSafe, <M as Service<Target>>::Future: UnwindSafe, <M as Service<Target>>::Response: UnwindSafe, <M as Service<Target>>::Error: UnwindSafe,

§

impl<O, E> UnwindSafe for Fail<O, E>
where O: UnwindSafe, E: UnwindSafe,

§

impl<O, E> UnwindSafe for Success<O, E>
where O: UnwindSafe, E: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<P, F> UnwindSafe for MapValueParser<P, F>
where P: UnwindSafe, F: UnwindSafe,

§

impl<P, F> UnwindSafe for TryMapValueParser<P, F>
where P: UnwindSafe, F: UnwindSafe,

§

impl<P, S> UnwindSafe for Retry<P, S>
where P: UnwindSafe, S: UnwindSafe,

§

impl<P, S, Request> UnwindSafe for AsyncResponseFuture<P, S, Request>
where S: UnwindSafe, <P as AsyncPredicate<Request>>::Future: UnwindSafe, <S as Service<<P as AsyncPredicate<Request>>::Request>>::Future: UnwindSafe,

§

impl<P, S, Request> UnwindSafe for rustmax::tower::retry::future::ResponseFuture<P, S, Request>
where Request: UnwindSafe, P: UnwindSafe, S: UnwindSafe, <S as Service<Request>>::Future: UnwindSafe, <P as Policy<Request, <S as Service<Request>>::Response, <S as Service<Request>>::Error>>::Future: UnwindSafe,

§

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

§

impl<R> UnwindSafe for rustmax::futures::io::BufReader<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for rustmax::futures::io::Lines<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for rustmax::futures::io::Take<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 IoRead<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for rustmax::serde_json::Deserializer<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for rustmax::tokio::io::BufReader<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for rustmax::tokio::io::Lines<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for rustmax::tokio::io::Split<R>
where R: UnwindSafe,

§

impl<R> UnwindSafe for rustmax::tokio::io::Take<R>
where R: UnwindSafe,

§

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

§

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

§

impl<R> UnwindSafe for rustmax::std::io::BufReader<R>
where R: UnwindSafe + ?Sized,

§

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

§

impl<R, F> !UnwindSafe for rustmax::tower::filter::future::ResponseFuture<R, F>

§

impl<R, Rsdr> UnwindSafe for ReseedingRng<R, Rsdr>

§

impl<R, W> UnwindSafe for rustmax::tokio::io::Join<R, W>
where R: UnwindSafe, W: UnwindSafe,

§

impl<RW> UnwindSafe for BufStream<RW>
where RW: UnwindSafe,

§

impl<Req, F> !UnwindSafe for rustmax::tower::buffer::Buffer<Req, F>

§

impl<Request> UnwindSafe for BufferLayer<Request>

§

impl<S = ()> !UnwindSafe for Router<S>

§

impl<S = (), E = Infallible> !UnwindSafe for MethodRouter<S, E>

§

impl<S = DefaultSpawn> !UnwindSafe for ThreadPoolBuilder<S>

§

impl<S> !UnwindSafe for LayeredFuture<S>

§

impl<S> !UnwindSafe for SplitStream<S>

§

impl<S> !UnwindSafe for FlattenValueTree<S>

§

impl<S> !UnwindSafe for LazyValueTree<S>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<S> UnwindSafe for rustmax::futures::prelude::stream::PollImmediate<S>
where S: UnwindSafe,

§

impl<S> UnwindSafe for rustmax::proptest::strategy::Flatten<S>
where S: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<S> UnwindSafe for rustmax::tower::make::Shared<S>
where S: UnwindSafe,

§

impl<S> UnwindSafe for SpawnReady<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, C> UnwindSafe for IntoMakeServiceWithConnectInfo<S, C>
where S: UnwindSafe,

§

impl<S, C> UnwindSafe for rustmax::axum::extract::connect_info::ResponseFuture<S, C>
where S: UnwindSafe, C: UnwindSafe,

§

impl<S, C> UnwindSafe for PeakEwma<S, C>
where S: UnwindSafe, C: UnwindSafe,

§

impl<S, C> UnwindSafe for PendingRequests<S, C>
where S: UnwindSafe, C: UnwindSafe,

§

impl<S, F> UnwindSafe for rustmax::proptest::strategy::statics::Filter<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for rustmax::proptest::strategy::statics::Map<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for rustmax::proptest::strategy::Filter<S, F>

§

impl<S, F> UnwindSafe for rustmax::proptest::strategy::FilterMap<S, F>

§

impl<S, F> UnwindSafe for IndFlattenMap<S, F>

§

impl<S, F> UnwindSafe for rustmax::proptest::strategy::Map<S, F>

§

impl<S, F> UnwindSafe for Perturb<S, F>

§

impl<S, F> UnwindSafe for PerturbValueTree<S, F>

§

impl<S, F> UnwindSafe for rustmax::tower::util::AndThen<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for rustmax::tower::util::MapErr<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for MapFuture<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for rustmax::tower::util::MapRequest<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for rustmax::tower::util::MapResponse<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for MapResult<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F> UnwindSafe for rustmax::tower::util::Then<S, F>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, F, Req> UnwindSafe for Steer<S, F, Req>
where F: UnwindSafe, Req: UnwindSafe, S: UnwindSafe,

§

impl<S, F, T> UnwindSafe for HandleError<S, F, T>
where S: UnwindSafe, F: UnwindSafe,

§

impl<S, Item> !UnwindSafe for SplitSink<S, Item>

§

impl<S, O> UnwindSafe for rustmax::proptest::strategy::MapInto<S, O>
where S: UnwindSafe, O: UnwindSafe,

§

impl<S, P> UnwindSafe for Hedge<S, P>
where P: UnwindSafe, S: UnwindSafe,

§

impl<S, Req> UnwindSafe for MakeBalance<S, Req>
where S: UnwindSafe,

§

impl<S, Req> UnwindSafe for Oneshot<S, Req>
where S: UnwindSafe, <S as Service<Req>>::Future: UnwindSafe, Req: UnwindSafe,

§

impl<S, Request> UnwindSafe for Future<S, Request>
where <S as Service<Request>>::Future: UnwindSafe,

§

impl<S, T> UnwindSafe for AddExtension<S, T>
where S: UnwindSafe, T: UnwindSafe,

§

impl<S, T> UnwindSafe for UniformArrayStrategy<S, T>
where S: UnwindSafe, T: UnwindSafe,

§

impl<Si1, Si2> UnwindSafe for Fanout<Si1, Si2>
where Si1: UnwindSafe, Si2: UnwindSafe,

§

impl<Si, F> UnwindSafe for SinkMapErr<Si, F>
where Si: UnwindSafe, F: UnwindSafe,

§

impl<Si, Item> UnwindSafe for rustmax::futures::prelude::sink::Buffer<Si, Item>
where Si: UnwindSafe, Item: UnwindSafe,

§

impl<Si, Item, E> UnwindSafe for SinkErrInto<Si, Item, E>
where Si: UnwindSafe,

§

impl<Si, Item, U, Fut, F> UnwindSafe for With<Si, Item, U, Fut, F>
where Si: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<Si, Item, U, St, F> UnwindSafe for WithFlatMap<Si, Item, U, St, F>
where Si: UnwindSafe, F: UnwindSafe, St: UnwindSafe, Item: UnwindSafe,

§

impl<Span> UnwindSafe for DelimSpan<Span>
where Span: UnwindSafe,

§

impl<Span> UnwindSafe for Diagnostic<Span>
where Span: UnwindSafe,

§

impl<Span> UnwindSafe for ExpnGlobals<Span>
where Span: UnwindSafe,

§

impl<Span> UnwindSafe for Punct<Span>
where Span: UnwindSafe,

§

impl<Span, Symbol> UnwindSafe for Ident<Span, Symbol>
where Symbol: UnwindSafe, Span: UnwindSafe,

§

impl<Span, Symbol> UnwindSafe for Literal<Span, Symbol>
where Symbol: UnwindSafe, Span: UnwindSafe,

§

impl<St1, St2> UnwindSafe for rustmax::futures::prelude::stream::Chain<St1, St2>
where St2: UnwindSafe, St1: UnwindSafe,

§

impl<St1, St2> UnwindSafe for rustmax::futures::prelude::stream::Select<St1, St2>
where St1: UnwindSafe, St2: UnwindSafe,

§

impl<St1, St2> UnwindSafe for rustmax::futures::prelude::stream::Zip<St1, St2>
where St1: UnwindSafe, St2: UnwindSafe, <St1 as Stream>::Item: UnwindSafe, <St2 as Stream>::Item: UnwindSafe,

§

impl<St1, St2, Clos, State> UnwindSafe for SelectWithStrategy<St1, St2, Clos, State>
where St1: UnwindSafe, St2: UnwindSafe, State: UnwindSafe, Clos: UnwindSafe,

§

impl<St> !UnwindSafe for rustmax::futures::prelude::stream::select_all::IntoIter<St>

§

impl<St> !UnwindSafe for BufferUnordered<St>

§

impl<St> !UnwindSafe for Buffered<St>

§

impl<St> !UnwindSafe for rustmax::futures::prelude::stream::SelectAll<St>

§

impl<St> !UnwindSafe for TryBufferUnordered<St>

§

impl<St> !UnwindSafe for TryBuffered<St>

§

impl<St> !UnwindSafe for TryFlattenUnordered<St>

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::CatchUnwind<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Chunks<St>
where St: UnwindSafe, <St as Stream>::Item: UnwindSafe,

§

impl<St> UnwindSafe for Concat<St>
where St: UnwindSafe, <St as Stream>::Item: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Count<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Cycle<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Enumerate<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Flatten<St>
where St: UnwindSafe, <St as Stream>::Item: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Fuse<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for IntoAsyncRead<St>
where St: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::IntoStream<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Peekable<St>
where St: UnwindSafe, <St as Stream>::Item: UnwindSafe,

§

impl<St> UnwindSafe for ReadyChunks<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Skip<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for StreamFuture<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::Take<St>
where St: UnwindSafe,

§

impl<St> UnwindSafe for TryChunks<St>
where St: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St> UnwindSafe for TryConcat<St>
where St: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St> UnwindSafe for rustmax::futures::prelude::stream::TryFlatten<St>
where St: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St> UnwindSafe for TryReadyChunks<St>
where St: UnwindSafe,

§

impl<St, C> UnwindSafe for Collect<St, C>
where St: UnwindSafe, C: UnwindSafe,

§

impl<St, C> UnwindSafe for TryCollect<St, C>
where St: UnwindSafe, C: UnwindSafe,

§

impl<St, E> UnwindSafe for rustmax::futures::prelude::stream::ErrInto<St, E>
where St: UnwindSafe,

§

impl<St, F> UnwindSafe for rustmax::futures::prelude::stream::Inspect<St, F>
where St: UnwindSafe, F: UnwindSafe,

§

impl<St, F> UnwindSafe for rustmax::futures::prelude::stream::InspectErr<St, F>
where St: UnwindSafe, F: UnwindSafe,

§

impl<St, F> UnwindSafe for rustmax::futures::prelude::stream::InspectOk<St, F>
where St: UnwindSafe, F: UnwindSafe,

§

impl<St, F> UnwindSafe for rustmax::futures::prelude::stream::Map<St, F>
where St: UnwindSafe, F: UnwindSafe,

§

impl<St, F> UnwindSafe for rustmax::futures::prelude::stream::MapErr<St, F>
where St: UnwindSafe, F: UnwindSafe,

§

impl<St, F> UnwindSafe for rustmax::futures::prelude::stream::MapOk<St, F>
where St: UnwindSafe, F: UnwindSafe,

§

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

§

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

§

impl<St, FromA, FromB> UnwindSafe for Unzip<St, FromA, FromB>
where St: UnwindSafe, FromA: UnwindSafe, FromB: UnwindSafe,

§

impl<St, Fut> UnwindSafe for rustmax::futures::prelude::stream::TakeUntil<St, Fut>
where St: UnwindSafe, Fut: UnwindSafe, <Fut as Future>::Output: UnwindSafe,

§

impl<St, Fut, F> !UnwindSafe for ForEachConcurrent<St, Fut, F>

§

impl<St, Fut, F> !UnwindSafe for TryForEachConcurrent<St, Fut, F>

§

impl<St, Fut, F> UnwindSafe for All<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::AndThen<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::Any<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::Filter<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe, <St as Stream>::Item: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::FilterMap<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for ForEach<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::OrElse<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::SkipWhile<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe, <St as Stream>::Item: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::TakeWhile<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe, <St as Stream>::Item: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::Then<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for TryAll<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for TryAny<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for TryFilter<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for TryFilterMap<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for TryForEach<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for TrySkipWhile<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St, Fut, F> UnwindSafe for TryTakeWhile<St, Fut, F>
where St: UnwindSafe, F: UnwindSafe, Fut: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St, Fut, T, F> UnwindSafe for rustmax::futures::prelude::stream::Fold<St, Fut, T, F>
where St: UnwindSafe, F: UnwindSafe, T: UnwindSafe, Fut: UnwindSafe,

§

impl<St, Fut, T, F> UnwindSafe for rustmax::futures::prelude::stream::TryFold<St, Fut, T, F>
where St: UnwindSafe, F: UnwindSafe, T: UnwindSafe, Fut: UnwindSafe,

§

impl<St, S, Fut, F> UnwindSafe for rustmax::futures::prelude::stream::Scan<St, S, Fut, F>
where St: UnwindSafe, Fut: UnwindSafe, S: UnwindSafe, F: UnwindSafe,

§

impl<St, Si> UnwindSafe for Forward<St, Si>
where Si: UnwindSafe, St: UnwindSafe, <St as TryStream>::Ok: UnwindSafe,

§

impl<St, U, F> !UnwindSafe for FlatMapUnordered<St, U, F>

§

impl<St, U, F> UnwindSafe for rustmax::futures::prelude::stream::FlatMap<St, U, F>
where St: UnwindSafe, F: UnwindSafe, U: UnwindSafe,

§

impl<Svc, S> !UnwindSafe for CallAll<Svc, S>

§

impl<Svc, S> !UnwindSafe for CallAllUnordered<Svc, S>

§

impl<T> !UnwindSafe for rustmax::clap::parser::Values<T>

§

impl<T> !UnwindSafe for Injector<T>

§

impl<T> !UnwindSafe for rustmax::futures::channel::mpsc::Receiver<T>

§

impl<T> !UnwindSafe for rustmax::futures::channel::mpsc::Sender<T>

§

impl<T> !UnwindSafe for rustmax::futures::channel::mpsc::UnboundedReceiver<T>

§

impl<T> !UnwindSafe for rustmax::futures::channel::mpsc::UnboundedSender<T>

§

impl<T> !UnwindSafe for rustmax::futures::channel::oneshot::Receiver<T>

§

impl<T> !UnwindSafe for rustmax::futures::channel::oneshot::Sender<T>

§

impl<T> !UnwindSafe for rustmax::futures::io::ReadHalf<T>

§

impl<T> !UnwindSafe for rustmax::futures::io::ReuniteError<T>

§

impl<T> !UnwindSafe for rustmax::futures::io::WriteHalf<T>

§

impl<T> !UnwindSafe for rustmax::futures::lock::OwnedMutexGuard<T>

§

impl<T> !UnwindSafe for OwnedMutexLockFuture<T>

§

impl<T> !UnwindSafe for RemoteHandle<T>

§

impl<T> !UnwindSafe for Abortable<T>

§

impl<T> !UnwindSafe for FuturesOrdered<T>

§

impl<T> !UnwindSafe for rustmax::hyper::client::conn::TrySendError<T>

§

impl<T> !UnwindSafe for rustmax::hyper::Request<T>

§

impl<T> !UnwindSafe for rustmax::hyper::Response<T>

§

impl<T> !UnwindSafe for OptionValueTree<T>

§

impl<T> !UnwindSafe for BoxedStrategy<T>

§

impl<T> !UnwindSafe for SBoxedStrategy<T>

§

impl<T> !UnwindSafe for UnionValueTree<T>

§

impl<T> !UnwindSafe for RegexGeneratorStrategy<T>

§

impl<T> !UnwindSafe for RegexGeneratorValueTree<T>

§

impl<T> !UnwindSafe for AsyncFd<T>

§

impl<T> !UnwindSafe for AsyncFdTryNewError<T>

§

impl<T> !UnwindSafe for rustmax::tokio::sync::broadcast::Receiver<T>

§

impl<T> !UnwindSafe for rustmax::tokio::sync::broadcast::Sender<T>

§

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

§

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

§

impl<T> !UnwindSafe for rustmax::tokio::sync::Mutex<T>

§

impl<T> !UnwindSafe for rustmax::tokio::sync::OnceCell<T>

§

impl<T> !UnwindSafe for rustmax::tokio::sync::OwnedMutexGuard<T>

§

impl<T> !UnwindSafe for OwnedRwLockWriteGuard<T>

§

impl<T> !UnwindSafe for rustmax::tokio::sync::RwLock<T>

§

impl<T> !UnwindSafe for rustmax::tokio::sync::watch::Receiver<T>

§

impl<T> !UnwindSafe for rustmax::tokio::sync::watch::Sender<T>

§

impl<T> !UnwindSafe for JoinSet<T>

§

impl<T> !UnwindSafe for rustmax::tokio::time::Timeout<T>

§

impl<T> !UnwindSafe for rustmax::tower::buffer::future::ResponseFuture<T>

§

impl<T> !UnwindSafe for rustmax::tower::limit::concurrency::future::ResponseFuture<T>

§

impl<T> !UnwindSafe for ConcurrencyLimit<T>

§

impl<T> !UnwindSafe for RateLimit<T>

§

impl<T> !UnwindSafe for rustmax::tower::timeout::future::ResponseFuture<T>

§

impl<T> !UnwindSafe for rustmax::std::thread::JoinHandle<T>

§

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

§

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

§

impl<T> UnwindSafe for rustmax::crossbeam::channel::SendTimeoutError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::crossbeam::channel::TrySendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Steal<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 TestError<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::tokio::sync::mpsc::error::SendTimeoutError<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::std::sync::TryLockError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::std::sync::mpmc::SendTimeoutError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::std::sync::mpsc::TrySendError<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::axum::extract::Path<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::bytes::buf::IntoIter<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::crossbeam::channel::IntoIter<T>

§

impl<T> UnwindSafe for rustmax::crossbeam::channel::SendError<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::futures::channel::mpsc::TrySendError<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::futures::io::Cursor<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::futures::lock::Mutex<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for rustmax::futures::prelude::future::Pending<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::futures::prelude::future::PollImmediate<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::futures::prelude::future::Ready<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::futures::prelude::sink::Drain<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::futures::prelude::stream::Empty<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::futures::prelude::stream::Pending<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::futures::prelude::stream::Repeat<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::hyper::body::Frame<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::hyper::client::conn::http1::Parts<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::hyper::upgrade::Parts<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::itertools::Zip<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for OptionStrategy<T>

§

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

§

impl<T> UnwindSafe for rustmax::proptest::sample::Select<T>
where T: RefUnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::proptest::strategy::Fuse<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::proptest::strategy::Union<T>
where T: RefUnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::rayon::collections::binary_heap::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::collections::btree_set::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::collections::hash_set::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::collections::linked_list::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::collections::vec_deque::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::iter::Empty<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::rayon::iter::Once<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::iter::Repeat<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::iter::RepeatN<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::option::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::range::Iter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::range_inclusive::Iter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::result::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::rayon::vec::IntoIter<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::reqwest::header::IntoIter<T>

§

impl<T> UnwindSafe for CoreWrapper<T>

§

impl<T> UnwindSafe for RtVariableCoreWrapper<T>

§

impl<T> UnwindSafe for XofReaderCoreWrapper<T>

§

impl<T> UnwindSafe for rustmax::syn::punctuated::IntoIter<T>

§

impl<T> UnwindSafe for rustmax::tokio::io::ReadHalf<T>

§

impl<T> UnwindSafe for rustmax::tokio::io::WriteHalf<T>

§

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

§

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

§

impl<T> UnwindSafe for OwnedPermit<T>

§

impl<T> UnwindSafe for rustmax::tokio::sync::mpsc::Receiver<T>

§

impl<T> UnwindSafe for rustmax::tokio::sync::mpsc::Sender<T>

§

impl<T> UnwindSafe for rustmax::tokio::sync::mpsc::UnboundedReceiver<T>

§

impl<T> UnwindSafe for rustmax::tokio::sync::mpsc::UnboundedSender<T>

§

impl<T> UnwindSafe for WeakSender<T>

§

impl<T> UnwindSafe for WeakUnboundedSender<T>

§

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

§

impl<T> UnwindSafe for rustmax::tokio::task::LocalKey<T>

§

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

§

impl<T> UnwindSafe for ServiceList<T>

§

impl<T> UnwindSafe for rustmax::tower::timeout::Timeout<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::tower::util::future::optional::ResponseFuture<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::std::cell::OnceCell<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for AsyncDropInPlace<T>
where <T as AsyncDestruct>::AsyncDestructor: UnwindSafe, T: ?Sized,

§

impl<T> UnwindSafe for rustmax::std::future::Pending<T>

§

impl<T> UnwindSafe for rustmax::std::future::Ready<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::std::iter::Once<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::std::iter::Rev<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for Discriminant<T>

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for rustmax::std::result::IntoIter<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for rustmax::std::sync::mpmc::IntoIter<T>

§

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

§

impl<T> UnwindSafe for rustmax::std::sync::mpsc::Receiver<T>

§

impl<T> UnwindSafe for rustmax::std::sync::mpsc::SendError<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for rustmax::std::sync::mpsc::Sender<T>

§

impl<T> UnwindSafe for SyncSender<T>

§

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

§

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

§

impl<T> UnwindSafe for rustmax::std::thread::LocalKey<T>

§

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

§

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

§

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

§

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

§

impl<T, A = Global> !UnwindSafe for rustmax::std::rc::Weak<T, A>

§

impl<T, A> UnwindSafe for rustmax::std::boxed::Box<T, A>
where A: UnwindSafe, T: UnwindSafe + ?Sized,

§

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

§

impl<T, A> UnwindSafe for rustmax::std::collections::binary_heap::IntoIter<T, A>

§

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

§

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

§

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

§

impl<T, A> UnwindSafe for rustmax::std::collections::linked_list::IntoIter<T, A>

§

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

§

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

§

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

§

impl<T, A> UnwindSafe for rustmax::std::sync::Weak<T, A>
where A: UnwindSafe, T: RefUnwindSafe + ?Sized,

§

impl<T, A> UnwindSafe for rustmax::std::vec::IntoIter<T, A>

§

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

§

impl<T, B> !UnwindSafe for rustmax::hyper::client::conn::http1::Connection<T, B>

§

impl<T, B, E> !UnwindSafe for rustmax::hyper::client::conn::http2::Connection<T, B, E>

§

impl<T, D> UnwindSafe for Storage<T, D>
where T: UnwindSafe, D: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T, E> UnwindSafe for rustmax::nom::bytes::TakeUntil<T, E>
where T: UnwindSafe, E: UnwindSafe,

§

impl<T, E> UnwindSafe for MaybeErr<T, E>

§

impl<T, E> UnwindSafe for MaybeOk<T, E>

§

impl<T, E, S> UnwindSafe for FromExtractor<T, E, S>
where T: UnwindSafe, S: UnwindSafe,

§

impl<T, Error> UnwindSafe for Permutation<T, Error>
where T: UnwindSafe, Error: UnwindSafe,

§

impl<T, F> !UnwindSafe for Recursive<T, F>

§

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

§

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

§

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

§

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

§

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

§

impl<T, F, Fut> UnwindSafe for TryUnfold<T, F, Fut>
where F: UnwindSafe, T: UnwindSafe, Fut: UnwindSafe,

§

impl<T, F, Fut> UnwindSafe for rustmax::futures::prelude::stream::Unfold<T, F, Fut>
where F: UnwindSafe, T: UnwindSafe, Fut: UnwindSafe,

§

impl<T, F, R> UnwindSafe for rustmax::futures::prelude::sink::Unfold<T, F, R>
where F: UnwindSafe, T: UnwindSafe, R: UnwindSafe,

§

impl<T, Item> !UnwindSafe for rustmax::futures::prelude::stream::ReuniteError<T, Item>

§

impl<T, M> UnwindSafe for Constant<T, M>
where T: UnwindSafe, M: UnwindSafe,

§

impl<T, N> UnwindSafe for GenericArrayIter<T, N>
where <N as ArrayLength<T>>::ArrayType: UnwindSafe,

§

impl<T, OutSize, O> UnwindSafe for CtVariableCoreWrapper<T, OutSize, O>
where T: UnwindSafe, OutSize: UnwindSafe, O: UnwindSafe,

§

impl<T, P> UnwindSafe for rustmax::syn::punctuated::Pair<T, P>
where T: UnwindSafe, P: UnwindSafe,

§

impl<T, P> UnwindSafe for IntoPairs<T, P>

§

impl<T, P> UnwindSafe for Punctuated<T, P>
where T: UnwindSafe, P: UnwindSafe,

§

impl<T, Request> UnwindSafe for ReadyOneshot<T, Request>
where T: UnwindSafe,

§

impl<T, S> !UnwindSafe for rustmax::hyper::server::conn::http1::Connection<T, S>

§

impl<T, S> !UnwindSafe for UpgradeableConnection<T, S>

§

impl<T, S> UnwindSafe for AHashSet<T, S>
where S: UnwindSafe, T: UnwindSafe,

§

impl<T, S> UnwindSafe for rustmax::hyper::server::conn::http1::Parts<T, S>
where T: UnwindSafe, S: UnwindSafe,

§

impl<T, S> UnwindSafe for HashSet<T, S>
where S: UnwindSafe, T: UnwindSafe,

§

impl<T, S, E> !UnwindSafe for rustmax::hyper::server::conn::http2::Connection<T, S, E>

§

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 rustmax::bytes::buf::Chain<T, U>
where T: UnwindSafe, U: UnwindSafe,

§

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

§

impl<T, U> UnwindSafe for ZipLongest<T, U>
where T: UnwindSafe, U: UnwindSafe,

§

impl<T, U> UnwindSafe for GenericArray<T, U>
where <U as ArrayLength<T>>::ArrayType: UnwindSafe,

§

impl<T, U> UnwindSafe for AsyncFilter<T, U>
where T: UnwindSafe, U: UnwindSafe,

§

impl<T, U> UnwindSafe for rustmax::tower::filter::Filter<T, U>
where T: UnwindSafe, U: UnwindSafe,

§

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

§

impl<T, U, E> !UnwindSafe for BoxCloneService<T, U, E>

§

impl<T, U, E> !UnwindSafe for BoxCloneSyncService<T, U, E>

§

impl<T, U, E> !UnwindSafe for BoxService<T, U, E>

§

impl<T, U, E> !UnwindSafe for UnsyncBoxService<T, U, E>

§

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

§

impl<T, const N: usize> UnwindSafe for rustmax::std::array::IntoIter<T, 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<TokenStream, Span> UnwindSafe for Group<TokenStream, Span>
where TokenStream: UnwindSafe, Span: UnwindSafe,

§

impl<TokenStream, Span, Symbol> UnwindSafe for TokenTree<TokenStream, Span, Symbol>
where Span: UnwindSafe, Symbol: UnwindSafe, TokenStream: UnwindSafe,

§

impl<Tz> UnwindSafe for rustmax::chrono::Date<Tz>
where <Tz as TimeZone>::Offset: UnwindSafe,

§

impl<Tz> UnwindSafe for rustmax::chrono::DateTime<Tz>
where <Tz as TimeZone>::Offset: UnwindSafe,

§

impl<U> UnwindSafe for NInt<U>
where U: UnwindSafe,

§

impl<U> UnwindSafe for PInt<U>
where U: UnwindSafe,

§

impl<U> UnwindSafe for AsyncFilterLayer<U>
where U: UnwindSafe,

§

impl<U> UnwindSafe for FilterLayer<U>
where U: UnwindSafe,

§

impl<U, B> UnwindSafe for UInt<U, B>
where U: UnwindSafe, B: UnwindSafe,

§

impl<V> UnwindSafe for ShuffleValueTree<V>
where V: UnwindSafe,

§

impl<V, A> UnwindSafe for TArr<V, A>
where V: UnwindSafe, A: UnwindSafe,

§

impl<V, F, O> UnwindSafe for FilterMapValueTree<V, F, O>

§

impl<W> !UnwindSafe for IntoInnerError<W>

§

impl<W> UnwindSafe for rustmax::futures::io::BufWriter<W>
where W: UnwindSafe,

§

impl<W> UnwindSafe for rustmax::futures::io::LineWriter<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 Ansi<W>
where W: UnwindSafe,

§

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

§

impl<W> UnwindSafe for rustmax::tokio::io::BufWriter<W>
where W: UnwindSafe,

§

impl<W> UnwindSafe for rustmax::std::io::BufWriter<W>
where W: UnwindSafe + ?Sized,

§

impl<W> UnwindSafe for rustmax::std::io::LineWriter<W>
where W: UnwindSafe + ?Sized,

§

impl<W, F> UnwindSafe for rustmax::serde_json::Serializer<W, F>
where W: UnwindSafe, F: UnwindSafe,

§

impl<W, Item> UnwindSafe for IntoSink<W, Item>
where W: UnwindSafe, Item: UnwindSafe,

§

impl<X> UnwindSafe for Uniform<X>

§

impl<X> UnwindSafe for UniformFloat<X>
where X: UnwindSafe,

§

impl<X> UnwindSafe for UniformInt<X>
where X: UnwindSafe,

§

impl<X> UnwindSafe for WeightedIndex<X>

§

impl<Y, R> UnwindSafe for CoroutineState<Y, R>
where Y: UnwindSafe, R: UnwindSafe,

§

impl<const N: usize> UnwindSafe for GetManyMutError<N>

§

impl<const N: usize> UnwindSafe for LaneCount<N>