Trait nostr::prelude::core::panic::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§

1.59.0 · source§

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

§

impl UnwindSafe for AbortHandle

§

impl UnwindSafe for CancellationToken

§

impl UnwindSafe for Notify

§

impl UnwindSafe for Runtime

1.64.0 · source§

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

1.36.0 · source§

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

source§

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

source§

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

source§

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

source§

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

1.25.0 · source§

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

source§

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

1.70.0 · source§

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

source§

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

source§

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

source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

§

impl<T> UnwindSafe for JoinHandle<T>

source§

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

source§

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

source§

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

Auto implementors§

§

impl !UnwindSafe for nostr::event::builder::Error

§

impl !UnwindSafe for nostr::event::Error

§

impl !UnwindSafe for nostr::event::partial::Error

§

impl !UnwindSafe for nostr::event::tag::Error

§

impl !UnwindSafe for nostr::event::unsigned::Error

§

impl !UnwindSafe for MessageHandleError

§

impl !UnwindSafe for nostr::nips::nip05::Error

§

impl !UnwindSafe for nostr::nips::nip11::Error

§

impl !UnwindSafe for nostr::nips::nip46::Error

§

impl !UnwindSafe for nostr::nips::nip47::Error

§

impl !UnwindSafe for nostr::types::metadata::Error

§

impl !UnwindSafe for nostr::prelude::bip158::Error

§

impl !UnwindSafe for nostr::prelude::consensus::encode::Error

§

impl !UnwindSafe for nostr::prelude::psbt::Error

§

impl !UnwindSafe for ReadError

§

impl !UnwindSafe for ThreadRng

§

impl !UnwindSafe for nostr::prelude::secp256k1::rand::Error

§

impl UnwindSafe for WrongKindError

§

impl UnwindSafe for nostr::event::id::Error

§

impl UnwindSafe for Kind

§

impl UnwindSafe for ExternalIdentity

§

impl UnwindSafe for HttpMethod

§

impl UnwindSafe for Marker

§

impl UnwindSafe for RelayMetadata

§

impl UnwindSafe for Report

§

impl UnwindSafe for Tag

§

impl UnwindSafe for TagKind

§

impl UnwindSafe for nostr::key::Error

§

impl UnwindSafe for nostr::key::vanity::Error

§

impl UnwindSafe for ClientMessage

§

impl UnwindSafe for NegentropyErrorCode

§

impl UnwindSafe for RawRelayMessage

§

impl UnwindSafe for RelayMessage

§

impl UnwindSafe for Alphabet

§

impl UnwindSafe for AlphabetError

§

impl UnwindSafe for GenericTagValue

§

impl UnwindSafe for nostr::nips::nip01::Error

§

impl UnwindSafe for nostr::nips::nip04::Error

§

impl UnwindSafe for nostr::nips::nip06::Error

§

impl UnwindSafe for RetentionKind

§

impl UnwindSafe for nostr::nips::nip19::Error

§

impl UnwindSafe for Nip19

§

impl UnwindSafe for nostr::nips::nip21::Error

§

impl UnwindSafe for Condition

§

impl UnwindSafe for nostr::nips::nip26::Error

§

impl UnwindSafe for ValidationError

§

impl UnwindSafe for nostr::nips::nip44::Error

§

impl UnwindSafe for nostr::nips::nip44::Version

§

impl UnwindSafe for ErrorV2

§

impl UnwindSafe for nostr::nips::nip46::Message

§

impl UnwindSafe for nostr::nips::nip46::Request

§

impl UnwindSafe for nostr::nips::nip46::Response

§

impl UnwindSafe for BudgetType

§

impl UnwindSafe for ErrorCode

§

impl UnwindSafe for Method

§

impl UnwindSafe for RequestParams

§

impl UnwindSafe for ResponseResult

§

impl UnwindSafe for Protocol

§

impl UnwindSafe for nostr::nips::nip53::Error

§

impl UnwindSafe for LiveEventMarker

§

impl UnwindSafe for LiveEventStatus

§

impl UnwindSafe for nostr::nips::nip58::Error

§

impl UnwindSafe for DataVendingMachineStatus

§

impl UnwindSafe for nostr::nips::nip90::Error

§

impl UnwindSafe for nostr::nips::nip98::Error

§

impl UnwindSafe for RequiredTags

§

impl UnwindSafe for nostr::types::url::Error

§

impl UnwindSafe for EventIdOrCoordinate

§

impl UnwindSafe for nostr::prelude::address::Error

§

impl UnwindSafe for NetworkChecked

§

impl UnwindSafe for NetworkUnchecked

§

impl UnwindSafe for Payload

§

impl UnwindSafe for WitnessVersion

§

impl UnwindSafe for ParseAmountError

§

impl UnwindSafe for nostr::prelude::base58::Error

§

impl UnwindSafe for nostr::prelude::bech32::Error

§

impl UnwindSafe for Variant

§

impl UnwindSafe for ChildNumber

§

impl UnwindSafe for nostr::prelude::bip32::Error

§

impl UnwindSafe for nostr::prelude::bip152::Error

§

impl UnwindSafe for Bip34Error

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::absolute::Error

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::absolute::LockTime

§

impl UnwindSafe for OperationError

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::relative::Error

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::relative::LockTime

§

impl UnwindSafe for Class

§

impl UnwindSafe for ClassifyContext

§

impl UnwindSafe for nostr::prelude::blockdata::script::Error

§

impl UnwindSafe for ParseOutPointError

§

impl UnwindSafe for Lower

§

impl UnwindSafe for Upper

§

impl UnwindSafe for AddressType

§

impl UnwindSafe for Denomination

§

impl UnwindSafe for Language

§

impl UnwindSafe for Network

§

impl UnwindSafe for Origin

§

impl UnwindSafe for ParseError

§

impl UnwindSafe for Position

§

impl UnwindSafe for SyntaxViolation

§

impl UnwindSafe for Value

§

impl UnwindSafe for nostr::prelude::key::Error

§

impl UnwindSafe for Parity

§

impl UnwindSafe for MerkleBlockError

§

impl UnwindSafe for AddrV2

§

impl UnwindSafe for NetworkMessage

§

impl UnwindSafe for Inventory

§

impl UnwindSafe for BloomFlags

§

impl UnwindSafe for RejectReason

§

impl UnwindSafe for GetKeyError

§

impl UnwindSafe for KeyRequest

§

impl UnwindSafe for OutputType

§

impl UnwindSafe for SignError

§

impl UnwindSafe for SigningAlgorithm

§

impl UnwindSafe for nostr::prelude::secp256k1::All

§

impl UnwindSafe for nostr::prelude::secp256k1::Error

§

impl UnwindSafe for SignOnly

§

impl UnwindSafe for VerifyOnly

§

impl UnwindSafe for c_void

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::Error

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::hex::Error

§

impl UnwindSafe for BernoulliError

§

impl UnwindSafe for WeightedError

§

impl UnwindSafe for IndexVec

§

impl UnwindSafe for IndexVecIntoIter

§

impl UnwindSafe for CharEscape

§

impl UnwindSafe for EcdsaSighashType

§

impl UnwindSafe for nostr::prelude::sighash::Error

§

impl UnwindSafe for TapSighashType

§

impl UnwindSafe for nostr::prelude::taproot::Error

§

impl UnwindSafe for HiddenNodes

§

impl UnwindSafe for IncompleteBuilder

§

impl UnwindSafe for LeafVersion

§

impl UnwindSafe for TapLeaf

§

impl UnwindSafe for TaprootBuilderError

§

impl UnwindSafe for TaprootError

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for nostr::prelude::core::cmp::Ordering

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for nostr::prelude::core::fmt::Alignment

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for nostr::prelude::core::sync::atomic::Ordering

§

impl UnwindSafe for EventBuilder

§

impl UnwindSafe for EventId

§

impl UnwindSafe for MissingPartialEvent

§

impl UnwindSafe for PartialEvent

§

impl UnwindSafe for Event

§

impl UnwindSafe for TagIndexValues

§

impl UnwindSafe for TagIndexes

§

impl UnwindSafe for Identity

§

impl UnwindSafe for ImageDimensions

§

impl UnwindSafe for UnsignedEvent

§

impl UnwindSafe for nostr::key::Keys

§

impl UnwindSafe for nostr::message::subscription::Filter

§

impl UnwindSafe for SubscriptionId

§

impl UnwindSafe for Coordinate

§

impl UnwindSafe for FeeSchedule

§

impl UnwindSafe for FeeSchedules

§

impl UnwindSafe for Limitation

§

impl UnwindSafe for RelayInformationDocument

§

impl UnwindSafe for Retention

§

impl UnwindSafe for CustomerContact

§

impl UnwindSafe for CustomerOrder

§

impl UnwindSafe for CustomerOrderItem

§

impl UnwindSafe for MerchantPaymentRequest

§

impl UnwindSafe for MerchantVerifyPayment

§

impl UnwindSafe for PaymentOption

§

impl UnwindSafe for ProductData

§

impl UnwindSafe for ShippingCost

§

impl UnwindSafe for ShippingMethod

§

impl UnwindSafe for StallData

§

impl UnwindSafe for Nip19Event

§

impl UnwindSafe for Nip19Profile

§

impl UnwindSafe for Conditions

§

impl UnwindSafe for DelegationTag

§

impl UnwindSafe for DelegationToken

§

impl UnwindSafe for EventProperties

§

impl UnwindSafe for ParameterizedReplaceableEvent

§

impl UnwindSafe for ConversationKey

§

impl UnwindSafe for DelegationResult

§

impl UnwindSafe for NostrConnectMetadata

§

impl UnwindSafe for NostrConnectURI

§

impl UnwindSafe for GetBalanceResponseResult

§

impl UnwindSafe for KeysendTLVRecord

§

impl UnwindSafe for ListInvoicesRequestParams

§

impl UnwindSafe for ListPaymentResponseResult

§

impl UnwindSafe for ListPaymentsRequestParams

§

impl UnwindSafe for LookupInvoiceRequestParams

§

impl UnwindSafe for LookupInvoiceResponseResult

§

impl UnwindSafe for MakeInvoiceRequestParams

§

impl UnwindSafe for MakeInvoiceResponseResult

§

impl UnwindSafe for NIP47Error

§

impl UnwindSafe for NostrWalletConnectInfo

§

impl UnwindSafe for NostrWalletConnectURI

§

impl UnwindSafe for PayInvoiceRequestParams

§

impl UnwindSafe for PayInvoiceResponseResult

§

impl UnwindSafe for PayKeysendRequestParams

§

impl UnwindSafe for PayKeysendResponseResult

§

impl UnwindSafe for nostr::nips::nip47::Request

§

impl UnwindSafe for nostr::nips::nip47::Response

§

impl UnwindSafe for LiveEvent

§

impl UnwindSafe for LiveEventHost

§

impl UnwindSafe for ZapRequestData

§

impl UnwindSafe for FileMetadata

§

impl UnwindSafe for HttpData

§

impl UnwindSafe for Url

§

impl UnwindSafe for Contact

§

impl UnwindSafe for Metadata

§

impl UnwindSafe for Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for Timestamp

§

impl UnwindSafe for UncheckedUrl

§

impl UnwindSafe for WitnessProgram

§

impl UnwindSafe for Display

§

impl UnwindSafe for u5

§

impl UnwindSafe for ChainCode

§

impl UnwindSafe for DerivationPath

§

impl UnwindSafe for ExtendedPrivKey

§

impl UnwindSafe for ExtendedPubKey

§

impl UnwindSafe for Fingerprint

§

impl UnwindSafe for BlockTransactions

§

impl UnwindSafe for BlockTransactionsRequest

§

impl UnwindSafe for HeaderAndShortIds

§

impl UnwindSafe for PrefilledTransaction

§

impl UnwindSafe for ShortId

§

impl UnwindSafe for TxIndexOutOfRangeError

§

impl UnwindSafe for BlockFilter

§

impl UnwindSafe for BlockFilterReader

§

impl UnwindSafe for GcsFilterReader

§

impl UnwindSafe for Header

§

impl UnwindSafe for nostr::prelude::blockdata::block::Version

§

impl UnwindSafe for ChainHash

§

impl UnwindSafe for ConversionError

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::absolute::Height

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::absolute::Time

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::relative::Height

§

impl UnwindSafe for nostr::prelude::blockdata::locktime::relative::Time

§

impl UnwindSafe for nostr::prelude::blockdata::opcodes::All

§

impl UnwindSafe for Builder

§

impl UnwindSafe for PushBytes

§

impl UnwindSafe for PushBytesBuf

§

impl UnwindSafe for PushBytesError

§

impl UnwindSafe for InputWeightPrediction

§

impl UnwindSafe for CheckedData

§

impl UnwindSafe for DecodeError

§

impl UnwindSafe for DecodeInitError

§

impl UnwindSafe for Params

§

impl UnwindSafe for FilterHash

§

impl UnwindSafe for FilterHeader

§

impl UnwindSafe for TxMerkleNode

§

impl UnwindSafe for WitnessCommitment

§

impl UnwindSafe for WitnessMerkleNode

§

impl UnwindSafe for XpubIdentifier

§

impl UnwindSafe for Config

§

impl UnwindSafe for Errors

§

impl UnwindSafe for Idna

§

impl UnwindSafe for nostr::prelude::key::KeyPair

§

impl UnwindSafe for nostr::prelude::key::PublicKey

§

impl UnwindSafe for SortKey

§

impl UnwindSafe for TweakedKeyPair

§

impl UnwindSafe for TweakedPublicKey

§

impl UnwindSafe for nostr::prelude::key::XOnlyPublicKey

§

impl UnwindSafe for nostr::prelude::map::IntoIter

§

impl UnwindSafe for PartialMerkleTree

§

impl UnwindSafe for AddrV2Message

§

impl UnwindSafe for ParseMagicError

§

impl UnwindSafe for ParseNetworkError

§

impl UnwindSafe for ServiceFlags

§

impl UnwindSafe for UnknownChainHash

§

impl UnwindSafe for UnknownMagic

§

impl UnwindSafe for CommandString

§

impl UnwindSafe for CommandStringError

§

impl UnwindSafe for RawNetworkMessage

§

impl UnwindSafe for GetBlocksMessage

§

impl UnwindSafe for GetHeadersMessage

§

impl UnwindSafe for FilterAdd

§

impl UnwindSafe for FilterLoad

§

impl UnwindSafe for BlockTxn

§

impl UnwindSafe for CmpctBlock

§

impl UnwindSafe for GetBlockTxn

§

impl UnwindSafe for SendCmpct

§

impl UnwindSafe for CFCheckpt

§

impl UnwindSafe for CFHeaders

§

impl UnwindSafe for CFilter

§

impl UnwindSafe for GetCFCheckpt

§

impl UnwindSafe for GetCFHeaders

§

impl UnwindSafe for GetCFilters

§

impl UnwindSafe for Reject

§

impl UnwindSafe for VersionMessage

§

impl UnwindSafe for nostr::prelude::network::Address

§

impl UnwindSafe for Magic

§

impl UnwindSafe for TryFromError

§

impl UnwindSafe for Key

§

impl UnwindSafe for Pair

§

impl UnwindSafe for Input

§

impl UnwindSafe for Output

§

impl UnwindSafe for PartiallySignedTransaction

§

impl UnwindSafe for PsbtSighashType

§

impl UnwindSafe for SharedSecret

§

impl UnwindSafe for nostr::prelude::secp256k1::ecdsa::serialized_signature::IntoIter

§

impl UnwindSafe for SerializedSignature

§

impl UnwindSafe for nostr::prelude::secp256k1::ecdsa::Signature

§

impl UnwindSafe for nostr::prelude::secp256k1::ffi::Context

§

impl UnwindSafe for nostr::prelude::secp256k1::ffi::KeyPair

§

impl UnwindSafe for nostr::prelude::secp256k1::ffi::PublicKey

§

impl UnwindSafe for SchnorrSigExtraParams

§

impl UnwindSafe for nostr::prelude::secp256k1::ffi::Signature

§

impl UnwindSafe for nostr::prelude::secp256k1::ffi::XOnlyPublicKey

§

impl UnwindSafe for AlignedType

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::hash160::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::ripemd160::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::ripemd160::HashEngine

§

impl UnwindSafe for IgnoredAny

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::serde::de::value::Error

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha1::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha1::HashEngine

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha256::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha256::HashEngine

§

impl UnwindSafe for Midstate

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha256d::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha512::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha512::HashEngine

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha512_256::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::sha512_256::HashEngine

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::siphash24::Hash

§

impl UnwindSafe for nostr::prelude::secp256k1::hashes::siphash24::HashEngine

§

impl UnwindSafe for State

§

impl UnwindSafe for Alphanumeric

§

impl UnwindSafe for Bernoulli

§

impl UnwindSafe for Open01

§

impl UnwindSafe for OpenClosed01

§

impl UnwindSafe for Standard

§

impl UnwindSafe for UniformChar

§

impl UnwindSafe for UniformDuration

§

impl UnwindSafe for StepRng

§

impl UnwindSafe for OsRng

§

impl UnwindSafe for StdRng

§

impl UnwindSafe for OutOfRangeError

§

impl UnwindSafe for nostr::prelude::secp256k1::schnorr::Signature

§

impl UnwindSafe for InvalidParityValue

§

impl UnwindSafe for nostr::prelude::secp256k1::Message

§

impl UnwindSafe for nostr::prelude::secp256k1::PublicKey

§

impl UnwindSafe for Scalar

§

impl UnwindSafe for SecretKey

§

impl UnwindSafe for CompactFormatter

§

impl UnwindSafe for LegacySighash

§

impl UnwindSafe for NonStandardSighashType

§

impl UnwindSafe for SegwitV0Sighash

§

impl UnwindSafe for SighashTypeParseError

§

impl UnwindSafe for TapSighash

§

impl UnwindSafe for TapSighashTag

§

impl UnwindSafe for AmbiguousLanguages

§

impl UnwindSafe for Amount

§

impl UnwindSafe for Block

§

impl UnwindSafe for BlockHash

§

impl UnwindSafe for nostr::prelude::Bytes

§

impl UnwindSafe for CompactTarget

§

impl UnwindSafe for FeeRate

§

impl UnwindSafe for MerkleBlock

§

impl UnwindSafe for Mnemonic

§

impl UnwindSafe for Negentropy

§

impl UnwindSafe for nostr::prelude::Number

§

impl UnwindSafe for OpaqueOrigin

§

impl UnwindSafe for OutPoint

§

impl UnwindSafe for PrivateKey

§

impl UnwindSafe for PubkeyHash

§

impl UnwindSafe for Script

§

impl UnwindSafe for ScriptBuf

§

impl UnwindSafe for ScriptHash

§

impl UnwindSafe for Sequence

§

impl UnwindSafe for SignedAmount

§

impl UnwindSafe for Target

§

impl UnwindSafe for Transaction

§

impl UnwindSafe for TxIn

§

impl UnwindSafe for TxOut

§

impl UnwindSafe for Txid

§

impl UnwindSafe for VarInt

§

impl UnwindSafe for WPubkeyHash

§

impl UnwindSafe for WScriptHash

§

impl UnwindSafe for Weight

§

impl UnwindSafe for Witness

§

impl UnwindSafe for Work

§

impl UnwindSafe for Wtxid

§

impl UnwindSafe for ControlBlock

§

impl UnwindSafe for FutureLeafVersion

§

impl UnwindSafe for LeafNode

§

impl UnwindSafe for NodeInfo

§

impl UnwindSafe for nostr::prelude::taproot::Signature

§

impl UnwindSafe for TapBranchTag

§

impl UnwindSafe for TapLeafHash

§

impl UnwindSafe for TapLeafTag

§

impl UnwindSafe for TapNodeHash

§

impl UnwindSafe for TapTree

§

impl UnwindSafe for TapTweakHash

§

impl UnwindSafe for TapTweakTag

§

impl UnwindSafe for TaprootBuilder

§

impl UnwindSafe for TaprootMerkleBranch

§

impl UnwindSafe for TaprootSpendInfo

§

impl UnwindSafe for nostr::prelude::value::Serializer

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for nostr::prelude::core::ascii::EscapeDefault

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for nostr::prelude::core::char::EscapeDebug

§

impl UnwindSafe for nostr::prelude::core::char::EscapeDefault

§

impl UnwindSafe for nostr::prelude::core::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for CStr

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for nostr::prelude::core::fmt::Error

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for NonZeroI8

§

impl UnwindSafe for NonZeroI16

§

impl UnwindSafe for NonZeroI32

§

impl UnwindSafe for NonZeroI64

§

impl UnwindSafe for NonZeroI128

§

impl UnwindSafe for NonZeroIsize

§

impl UnwindSafe for NonZeroU8

§

impl UnwindSafe for NonZeroU16

§

impl UnwindSafe for NonZeroU32

§

impl UnwindSafe for NonZeroU64

§

impl UnwindSafe for NonZeroU128

§

impl UnwindSafe for NonZeroUsize

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for nostr::prelude::core::ptr::Alignment

§

impl UnwindSafe for TimSortRun

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for Duration

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for AdjacentlyTaggedEnumVariant

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Number

§

impl UnwindSafe for Sign

§

impl UnwindSafe for TagContentOtherField

§

impl UnwindSafe for TagContentOtherFieldVisitor

§

impl UnwindSafe for TagOrContentField

§

impl UnwindSafe for TagOrContentFieldVisitor

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

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

§

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

§

impl<'a> !UnwindSafe for nostr::prelude::map::IterMut<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a> !UnwindSafe for nostr::prelude::core::error::Request<'a>

§

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

§

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

§

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

§

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

§

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

§

impl<'a> UnwindSafe for Instruction<'a>

§

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

§

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

§

impl<'a> UnwindSafe for AddressEncoding<'a>

§

impl<'a> UnwindSafe for DerivationPathIterator<'a>

§

impl<'a> UnwindSafe for nostr::prelude::blockdata::script::Bytes<'a>

§

impl<'a> UnwindSafe for InstructionIndices<'a>

§

impl<'a> UnwindSafe for Instructions<'a>

§

impl<'a> UnwindSafe for nostr::prelude::blockdata::witness::Iter<'a>

§

impl<'a> UnwindSafe for Decoder<'a>

§

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

§

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

§

impl<'a> UnwindSafe for ByteSerialize<'a>

§

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

§

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

§

impl<'a> UnwindSafe for nostr::prelude::map::Iter<'a>

§

impl<'a> UnwindSafe for nostr::prelude::map::Keys<'a>

§

impl<'a> UnwindSafe for Values<'a>

§

impl<'a> UnwindSafe for HexIterator<'a>

§

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

§

impl<'a> UnwindSafe for Annex<'a>

§

impl<'a> UnwindSafe for LeafNodes<'a>

§

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

§

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

§

impl<'a> UnwindSafe for nostr::prelude::core::str::Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for nostr::prelude::core::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for nostr::prelude::core::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for nostr::prelude::core::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for Lines<'a>

§

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

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

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

§

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

§

impl<'a> UnwindSafe for nostr::prelude::core::task::Context<'a>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, A> !UnwindSafe for nostr::prelude::core::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for nostr::prelude::core::option::Iter<'a, A>
where A: RefUnwindSafe,

§

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 nostr::prelude::secp256k1::hashes::serde::de::value::StrDeserializer<'a, E>
where E: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, P> UnwindSafe for nostr::prelude::core::str::RSplit<'a, P>
where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

impl<'a, P> UnwindSafe for nostr::prelude::core::str::RSplitN<'a, P>
where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

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

§

impl<'a, P> UnwindSafe for nostr::prelude::core::str::Split<'a, P>
where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

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

§

impl<'a, P> UnwindSafe for nostr::prelude::core::str::SplitN<'a, P>
where <P as Pattern<'a>>::Searcher: UnwindSafe,

§

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

§

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

§

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

§

impl<'a, T> !UnwindSafe for nostr::prelude::form_urlencoded::Serializer<'a, T>

§

impl<'a, T> !UnwindSafe for nostr::prelude::core::result::IterMut<'a, T>

§

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

§

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

§

impl<'a, T> !UnwindSafe for nostr::prelude::core::slice::IterMut<'a, T>

§

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

§

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

§

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

§

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

§

impl<'a, T> UnwindSafe for nostr::prelude::core::result::Iter<'a, T>
where T: RefUnwindSafe,

§

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

§

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

§

impl<'a, T> UnwindSafe for nostr::prelude::core::slice::Iter<'a, T>
where T: RefUnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T, P> UnwindSafe for nostr::prelude::core::slice::RSplit<'a, T, P>

§

impl<'a, T, P> UnwindSafe for nostr::prelude::core::slice::RSplitN<'a, T, P>

§

impl<'a, T, P> UnwindSafe for nostr::prelude::core::slice::Split<'a, T, P>

§

impl<'a, T, P> UnwindSafe for nostr::prelude::core::slice::SplitInclusive<'a, T, P>

§

impl<'a, T, P> UnwindSafe for nostr::prelude::core::slice::SplitN<'a, T, P>

§

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

§

impl<'a, T, const N: usize> UnwindSafe for nostr::prelude::core::slice::ArrayChunks<'a, T, N>
where T: RefUnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'buf> UnwindSafe for AllPreallocated<'buf>

§

impl<'buf> UnwindSafe for SignOnlyPreallocated<'buf>

§

impl<'buf> UnwindSafe for VerifyOnlyPreallocated<'buf>

§

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

§

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

§

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

§

impl<'de, E> UnwindSafe for nostr::prelude::secp256k1::hashes::serde::de::value::BorrowedStrDeserializer<'de, E>
where E: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<'de, R, T> UnwindSafe for StreamDeserializer<'de, R, T>
where R: UnwindSafe, T: UnwindSafe,

§

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

§

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

§

impl<'leaf> UnwindSafe for ScriptLeaf<'leaf>

§

impl<'s> UnwindSafe for ScriptPath<'s>

§

impl<'tree> UnwindSafe for ScriptLeaves<'tree>

§

impl<'u, T> UnwindSafe for Prevouts<'u, T>

§

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 Repeat<A>
where A: UnwindSafe,

§

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

§

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

§

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

§

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

§

impl<C> UnwindSafe for Encoder<C>
where C: UnwindSafe,

§

impl<C> UnwindSafe for Secp256k1<C>
where C: UnwindSafe,

§

impl<Case> UnwindSafe for Hex<Case>
where Case: UnwindSafe,

§

impl<D, F, T, S> UnwindSafe for DistMap<D, F, T, S>
where D: UnwindSafe, F: UnwindSafe,

§

impl<D, R, T> UnwindSafe for DistIter<D, R, T>
where D: UnwindSafe, R: UnwindSafe, T: UnwindSafe,

§

impl<Dyn> !UnwindSafe for DynMetadata<Dyn>

§

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

§

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

§

impl<E> UnwindSafe for With<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, M> UnwindSafe for Capture<E, M>
where E: UnwindSafe, M: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<H> UnwindSafe for BuildHasherDefault<H>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I> UnwindSafe for Flatten<I>

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I, E> UnwindSafe for SeqDeserializer<I, E>
where E: UnwindSafe, I: UnwindSafe,

§

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

§

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

§

impl<I, F> UnwindSafe for nostr::prelude::core::iter::Map<I, F>
where F: UnwindSafe, I: UnwindSafe,

§

impl<I, F, const N: usize> UnwindSafe for MapWindows<I, F, N>
where F: UnwindSafe, I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

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

§

impl<I, P> UnwindSafe for nostr::prelude::core::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 SkipWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for TakeWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, St, F> UnwindSafe for Scan<I, St, F>
where F: UnwindSafe, I: UnwindSafe, St: UnwindSafe,

§

impl<I, U, F> UnwindSafe for FlatMap<I, U, F>

§

impl<I, const N: usize> UnwindSafe for nostr::prelude::core::iter::ArrayChunks<I, N>
where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<Idx> UnwindSafe for Range<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeFrom<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeInclusive<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeTo<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeToInclusive<Idx>
where Idx: UnwindSafe,

§

impl<K, V> UnwindSafe for nostr::prelude::Map<K, V>

§

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

§

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

§

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

§

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

§

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

§

impl<R, Rsdr> UnwindSafe for ReseedingRng<R, Rsdr>

§

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

§

impl<Subtype> UnwindSafe for ProprietaryKey<Subtype>
where Subtype: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for HmacMidState<T>
where <<T as Hash>::Engine as HashEngine>::MidState: UnwindSafe,

§

impl<T> UnwindSafe for nostr::prelude::secp256k1::hashes::sha256t::Hash<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for HmacEngine<T>
where <T as Hash>::Engine: UnwindSafe,

§

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

§

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

§

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

§

impl<T> UnwindSafe for Pending<T>

§

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

§

impl<T> UnwindSafe for Empty<T>

§

impl<T> UnwindSafe for nostr::prelude::core::iter::Once<T>
where T: UnwindSafe,

§

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

§

impl<T> UnwindSafe for Discriminant<T>

§

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 nostr::prelude::core::result::IntoIter<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

impl<T, A> UnwindSafe for Vec<T, A>
where A: UnwindSafe, T: UnwindSafe,

§

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

§

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

§

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

§

impl<T, const N: usize> UnwindSafe for nostr::prelude::core::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<T: ?Sized> UnwindSafe for Cell<T>
where T: UnwindSafe,

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<V> UnwindSafe for nostr::prelude::Address<V>
where V: UnwindSafe,

§

impl<W> UnwindSafe for nostr::prelude::secp256k1::rand::distributions::weighted::alias_method::WeightedIndex<W>
where W: UnwindSafe,

§

impl<W, F> UnwindSafe for nostr::prelude::Serializer<W, F>
where F: UnwindSafe, W: UnwindSafe,

§

impl<X> UnwindSafe for Uniform<X>

§

impl<X> UnwindSafe for nostr::prelude::secp256k1::rand::distributions::WeightedIndex<X>

§

impl<X> UnwindSafe for UniformFloat<X>
where X: UnwindSafe,

§

impl<X> UnwindSafe for UniformInt<X>
where X: UnwindSafe,

§

impl<Y, R> UnwindSafe for CoroutineState<Y, R>
where R: UnwindSafe, Y: UnwindSafe,

§

impl<const N: usize> UnwindSafe for LaneCount<N>

§

impl<const N: usize> UnwindSafe for GetManyMutError<N>