Trait radix_engine_common::prelude::prelude::Send

1.0.0 · source ·
pub unsafe auto trait Send { }
Expand description

Types that can be transferred across thread boundaries.

This trait is automatically implemented when the compiler determines it’s appropriate.

An example of a non-Send type is the reference-counting pointer rc::Rc. If two threads attempt to clone Rcs that point to the same reference-counted value, they might try to update the reference count at the same time, which is undefined behavior because Rc doesn’t use atomic operations. Its cousin sync::Arc does use atomic operations (incurring some overhead) and thus is Send.

See the Nomicon and the Sync trait for more details.

Implementors§

1.26.0 · source§

impl !Send for Args

1.26.0 · source§

impl !Send for ArgsOs

1.6.0 · source§

impl Send for radix_engine_common::prelude::rust::string::Drain<'_>

1.36.0 · source§

impl Send for Waker

1.44.0 · source§

impl<'a> Send for IoSlice<'a>

1.44.0 · source§

impl<'a> Send for IoSliceMut<'a>

§

impl<'a, 'b, K, Q, V, S, A> Send for OccupiedEntryRef<'a, 'b, K, Q, V, S, A>
where K: Send, Q: Sync + ?Sized, V: Send, S: Send, A: Send + Allocator + Clone,

§

impl<C> Send for Secp256k1<C>
where C: Context,

source§

impl<Dyn> Send for DynMetadata<Dyn>
where Dyn: ?Sized,

§

impl<K, V> Send for IterMut<'_, K, V>
where K: Send, V: Send,

§

impl<K, V, S, A> Send for OccupiedEntry<'_, K, V, S, A>
where K: Send, V: Send, S: Send, A: Send + Allocator + Clone,

§

impl<K, V, S, A> Send for RawOccupiedEntryMut<'_, K, V, S, A>
where K: Send, V: Send, S: Send, A: Send + Allocator + Clone,

source§

impl<T> !Send for *const T
where T: ?Sized,

source§

impl<T> !Send for *mut T
where T: ?Sized,

1.25.0 · source§

impl<T> !Send for NonNull<T>
where T: ?Sized,

NonNull pointers are not Send because the data they reference may be aliased.

source§

impl<T> !Send for MutexGuard<'_, T>
where T: ?Sized,

source§

impl<T> !Send for RwLockReadGuard<'_, T>
where T: ?Sized,

source§

impl<T> !Send for RwLockWriteGuard<'_, T>
where T: ?Sized,

source§

impl<T> Send for &T
where T: Sync + ?Sized,

source§

impl<T> Send for ThinBox<T>
where T: Send + ?Sized,

ThinBox<T> is Send if T is Send because the data is owned.

1.31.0 · source§

impl<T> Send for ChunksExactMut<'_, T>
where T: Send,

source§

impl<T> Send for ChunksMut<'_, T>
where T: Send,

source§

impl<T> Send for radix_engine_common::prelude::rust::slice::Iter<'_, T>
where T: Sync,

source§

impl<T> Send for radix_engine_common::prelude::rust::slice::IterMut<'_, T>
where T: Send,

1.31.0 · source§

impl<T> Send for RChunksExactMut<'_, T>
where T: Send,

1.31.0 · source§

impl<T> Send for RChunksMut<'_, T>
where T: Send,

source§

impl<T> Send for AtomicPtr<T>

source§

impl<T> Send for Receiver<T>
where T: Send,

source§

impl<T> Send for Sender<T>
where T: Send,

source§

impl<T> Send for SyncSender<T>
where T: Send,

source§

impl<T> Send for Mutex<T>
where T: Send + ?Sized,

1.70.0 · source§

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

source§

impl<T> Send for RwLock<T>
where T: Send + ?Sized,

source§

impl<T> Send for alloc::collections::linked_list::Iter<'_, T>
where T: Sync,

source§

impl<T> Send for alloc::collections::linked_list::IterMut<'_, T>
where T: Send,

1.29.0 · source§

impl<T> Send for JoinHandle<T>

source§

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

source§

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

§

impl<T> Send for Bucket<T>

1.4.0 · source§

impl<T, A> !Send for radix_engine_common::prelude::rust::rc::Weak<T, A>
where A: Allocator, T: ?Sized,

source§

impl<T, A> !Send for Rc<T, A>
where A: Allocator, T: ?Sized,

1.6.0 · source§

impl<T, A> Send for radix_engine_common::prelude::rust::prelude::vec::Drain<'_, T, A>
where T: Send, A: Send + Allocator,

source§

impl<T, A> Send for radix_engine_common::prelude::rust::prelude::vec::IntoIter<T, A>
where T: Send, A: Allocator + Send,

source§

impl<T, A> Send for Arc<T, A>
where T: Sync + Send + ?Sized, A: Allocator + Send,

1.4.0 · source§

impl<T, A> Send for radix_engine_common::prelude::rust::sync::Weak<T, A>
where T: Sync + Send + ?Sized, A: Allocator + Send,

source§

impl<T, A> Send for alloc::collections::linked_list::Cursor<'_, T, A>
where T: Sync, A: Allocator + Sync,

source§

impl<T, A> Send for alloc::collections::linked_list::CursorMut<'_, T, A>
where T: Send, A: Allocator + Send,

1.6.0 · source§

impl<T, A> Send for alloc::collections::vec_deque::drain::Drain<'_, T, A>
where T: Send, A: Allocator + Send,

source§

impl<T, A> Send for LinkedList<T, A>
where T: Send, A: Allocator + Send,

§

impl<T, A> Send for RawDrain<'_, T, A>
where A: Allocator + Copy + Send, T: Send,

§

impl<T, A> Send for RawIntoIter<T, A>
where A: Allocator + Clone + Send, T: Send,

§

impl<T, A> Send for RawTable<T, A>
where A: Allocator + Clone + Send, T: Send,

§

impl<T, N> Send for GenericArray<T, N>
where T: Send, N: ArrayLength<T>,

Auto implementors§

§

impl Send for Bech32Case

§

impl Send for AddressBech32DecodeError

§

impl Send for AddressBech32EncodeError

§

impl Send for ParseBlsPublicKeyError

§

impl Send for ParseBlsSignatureError

§

impl Send for ParseEd25519PublicKeyError

§

impl Send for ParseEd25519SignatureError

§

impl Send for ParseHashError

§

impl Send for PublicKey

§

impl Send for PublicKeyHash

§

impl Send for ParseSecp256k1PublicKeyError

§

impl Send for ParseSecp256k1SignatureError

§

impl Send for ManifestCustomExtension

§

impl Send for ManifestCustomTraversal

§

impl Send for ManifestCustomValue

§

impl Send for ManifestCustomValueKind

§

impl Send for ManifestToRustValueError

§

impl Send for RustToManifestValueError

§

impl Send for ManifestAddress

§

impl Send for ParseManifestAddressReservationError

§

impl Send for ParseManifestBlobRefError

§

impl Send for ParseManifestBucketError

§

impl Send for ParseManifestDecimalError

§

impl Send for ManifestExpression

§

impl Send for ParseManifestExpressionError

§

impl Send for ManifestNonFungibleLocalId

§

impl Send for ManifestNonFungibleLocalIdValidationError

§

impl Send for ParseManifestPreciseDecimalError

§

impl Send for ParseManifestProofError

§

impl Send for OwnValidation

§

impl Send for ReferenceValidation

§

impl Send for ScryptoCustomTypeKind

§

impl Send for ScryptoCustomTypeValidation

§

impl Send for ScryptoCustomTraversal

§

impl Send for ScryptoCustomValue

§

impl Send for ScryptoCustomValueKind

§

impl Send for NonFungibleIdType

§

impl Send for ContentValidationError

§

impl Send for NonFungibleLocalId

§

impl Send for ParseNonFungibleLocalIdError

§

impl Send for ParseOwnError

§

impl Send for ParseReferenceError

§

impl Send for DisplayMode

§

impl Send for FormattingError

§

impl Send for PrintMode

§

impl Send for SerializationMode

§

impl Send for ValueContext

§

impl Send for ParseI192Error

§

impl Send for ParseI256Error

§

impl Send for ParseI320Error

§

impl Send for ParseI384Error

§

impl Send for ParseI448Error

§

impl Send for ParseI512Error

§

impl Send for ParseI768Error

§

impl Send for ParseU192Error

§

impl Send for ParseU256Error

§

impl Send for ParseU320Error

§

impl Send for ParseU384Error

§

impl Send for ParseU448Error

§

impl Send for ParseU512Error

§

impl Send for ParseU768Error

§

impl Send for ParseDecimalError

§

impl Send for ParsePreciseDecimalError

§

impl Send for ResolvedRoundingStrategy

§

impl Send for RoundingMode

§

impl Send for ParseNetworkError

§

impl Send for TimeComparisonOperator

§

impl Send for DateTimeError

§

impl Send for ParseUtcDateTimeError

§

impl Send for ParseComponentAddressError

§

impl Send for ParseGlobalAddressError

§

impl Send for ParseInternalAddressError

§

impl Send for ParsePackageAddressError

§

impl Send for ParseResourceAddressError

§

impl Send for EntityType

§

impl Send for SubstateKey

§

impl Send for RoyaltyAmount

§

impl Send for GenericSubstitution

§

impl Send for NoCustomExtension

§

impl Send for NoCustomSchema

§

impl Send for NoCustomTerminalValueRef

§

impl Send for NoCustomTraversal

§

impl Send for NoCustomTypeKind

§

impl Send for NoCustomTypeValidation

§

impl Send for NoCustomValue

§

impl Send for NoCustomValueKind

§

impl Send for SchemaValidationError

§

impl Send for ValidationError

§

impl Send for radix_engine_common::prelude::rust::cmp::Ordering

§

impl Send for Infallible

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for radix_engine_common::prelude::rust::prelude::fmt::Alignment

§

impl Send for SearchStep

§

impl Send for radix_engine_common::prelude::rust::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for ChildNames

§

impl Send for DecodeError

§

impl Send for EncodeError

§

impl Send for LocalTypeId

§

impl Send for RustTypeId

§

impl Send for AddressBech32Decoder

§

impl Send for AddressBech32Encoder

§

impl Send for HrpSet

§

impl Send for Bls12381G1PrivateKey

§

impl Send for Bls12381G1PublicKey

§

impl Send for Bls12381G2Signature

§

impl Send for Ed25519PrivateKey

§

impl Send for Ed25519PublicKey

§

impl Send for Ed25519PublicKeyHash

§

impl Send for Ed25519Signature

§

impl Send for Hash

§

impl Send for HashAccumulator

§

impl Send for SECP256K1_CTX

§

impl Send for Secp256k1PrivateKey

§

impl Send for Secp256k1PublicKey

§

impl Send for Secp256k1PublicKeyHash

§

impl Send for Secp256k1Signature

§

impl Send for ManifestCustomTerminalValueRef

§

impl Send for ManifestArgs

§

impl Send for ManifestAddressReservation

§

impl Send for ManifestBlobRef

§

impl Send for ManifestBucket

§

impl Send for ManifestDecimal

§

impl Send for ManifestPreciseDecimal

§

impl Send for ManifestProof

§

impl Send for ScryptoCustomExtension

§

impl Send for EMPTY_SCHEMA

§

impl Send for ScryptoCustomSchema

§

impl Send for ScryptoCustomTerminalValueRef

§

impl Send for WELL_KNOWN_LOOKUP

§

impl Send for BytesNonFungibleLocalId

§

impl Send for IntegerNonFungibleLocalId

§

impl Send for RUIDNonFungibleLocalId

§

impl Send for StringNonFungibleLocalId

§

impl Send for Own

§

impl Send for Reference

§

impl Send for EnumVariantHeader

§

impl Send for TupleHeader

§

impl Send for I192

§

impl Send for I256

§

impl Send for I320

§

impl Send for I384

§

impl Send for I448

§

impl Send for I512

§

impl Send for I768

§

impl Send for U192

§

impl Send for U256

§

impl Send for U320

§

impl Send for U384

§

impl Send for U448

§

impl Send for U512

§

impl Send for U768

§

impl Send for Decimal

§

impl Send for PreciseDecimal

§

impl Send for NetworkDefinition

§

impl Send for Instant

§

impl Send for UtcDateTime

§

impl Send for ComponentAddress

§

impl Send for GlobalAddress

§

impl Send for InternalAddress

§

impl Send for PackageAddress

§

impl Send for ResourceAddress

§

impl Send for Epoch

§

impl Send for Round

§

impl Send for GlobalAddressReservation

§

impl Send for NodeId

§

impl Send for PartitionNumber

§

impl Send for PartitionOffset

§

impl Send for BlueprintTypeIdentifier

§

impl Send for SchemaHash

§

impl Send for ScopedTypeId

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for UnorderedKeyError

§

impl Send for Error

§

impl Send for TryReserveError

§

impl Send for radix_engine_common::prelude::rust::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for radix_engine_common::prelude::rust::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for SchemaContext

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for LengthValidation

§

impl Send for NovelTypeMetadata

§

impl Send for SborPath

§

impl Send for SborPathBuf

§

impl Send for String

§

impl Send for TypeMetadata

§

impl Send for WellKnownTypeId

§

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

§

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

§

impl<'a> Send for AddressDisplayContext<'a>

§

impl<'a> Send for ManifestValueDisplayContext<'a>

§

impl<'a> Send for ScryptoValueDisplayContext<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for EscapeDebug<'a>

§

impl<'a> Send for EscapeDefault<'a>

§

impl<'a> Send for EscapeUnicode<'a>

§

impl<'a> Send for Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a, 'a2, 't, 'de, 's, 's1, 's2, E> Send for SerdeValueMapAggregator<'a, 'a2, 't, 'de, 's, 's1, 's2, E>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, 't, 'de, 's1, 's2, E> Send for SerializableType<'a, 't, 'de, 's1, 's2, E>

§

impl<'a, 't, 'de, 's1, 's2, E> Send for CustomTypeSerialization<'a, 't, 'de, 's1, 's2, E>

§

impl<'a, A> Send for radix_engine_common::prelude::rust::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for radix_engine_common::prelude::rust::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B: ?Sized> Send for Cow<'a, B>
where B: Sync, <B as ToOwned>::Owned: Send,

§

impl<'a, E> Send for RawPayload<'a, E>

§

impl<'a, E> Send for RawValue<'a, E>

§

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

§

impl<'a, I> Send for ByRefSized<'a, I>
where I: Send,

§

impl<'a, I, A> Send for Splice<'a, I, A>
where A: Send, I: Send, <I as Iterator>::Item: Send,

§

impl<'a, K> Send for radix_engine_common::prelude::rust::prelude::hash_set::Drain<'a, K>
where K: Send,

§

impl<'a, K> Send for radix_engine_common::prelude::rust::prelude::hash_set::Iter<'a, K>
where K: Sync,

§

impl<'a, K, F> Send for radix_engine_common::prelude::rust::prelude::hash_set::ExtractIf<'a, K, F>
where F: Send, K: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::Entry<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::Entry<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::btree_map::Cursor<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::btree_map::Iter<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::btree_map::IterMut<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::btree_map::Keys<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::btree_map::Range<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for RangeMut<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::btree_map::Values<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::btree_map::ValuesMut<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::Drain<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::Iter<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::IterMut<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::Keys<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::OccupiedEntry<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::OccupiedError<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::VacantEntry<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::Values<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::ValuesMut<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::Drain<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::Iter<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::IterMut<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::Keys<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::OccupiedEntry<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::VacantEntry<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::Values<'a, K, V>
where K: Sync, V: Sync,

§

impl<'a, K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::ValuesMut<'a, K, V>
where K: Send, V: Send,

§

impl<'a, K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::Entry<'a, K, V, A>
where A: Send, K: Send, V: Send,

§

impl<'a, K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::CursorMut<'a, K, V, A>
where A: Send, K: Send, V: Send,

§

impl<'a, K, V, A> Send for CursorMutKey<'a, K, V, A>
where A: Send, K: Send, V: Send,

§

impl<'a, K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::OccupiedEntry<'a, K, V, A>
where A: Send, K: Send, V: Send,

§

impl<'a, K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::OccupiedError<'a, K, V, A>
where A: Send, K: Send, V: Send,

§

impl<'a, K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::VacantEntry<'a, K, V, A>
where A: Send, K: Send, V: Send,

§

impl<'a, K, V, F> Send for radix_engine_common::prelude::rust::prelude::hash_map::ExtractIf<'a, K, V, F>
where F: Send, K: Send, V: Send,

§

impl<'a, K, V, F, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::ExtractIf<'a, K, V, F, A>
where A: Send, F: Send, K: Send, V: Send,

§

impl<'a, K, V, S> Send for RawEntryMut<'a, K, V, S>
where K: Send, S: Sync + Send, V: Send,

§

impl<'a, K, V, S> Send for RawEntryBuilder<'a, K, V, S>
where K: Sync, S: Sync, V: Sync,

§

impl<'a, K, V, S> Send for RawEntryBuilderMut<'a, K, V, S>
where K: Send, S: Send, V: Send,

§

impl<'a, K, V, S> Send for radix_engine_common::prelude::rust::prelude::hash_map::RawOccupiedEntryMut<'a, K, V, S>
where K: Send, S: Send, V: Send,

§

impl<'a, K, V, S> Send for RawVacantEntryMut<'a, K, V, S>
where K: Send, S: Sync, V: Send,

§

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

§

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

§

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

§

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

§

impl<'a, P> Send for radix_engine_common::prelude::rust::str::RSplit<'a, P>
where <P as Pattern<'a>>::Searcher: Send,

§

impl<'a, P> Send for radix_engine_common::prelude::rust::str::RSplitN<'a, P>
where <P as Pattern<'a>>::Searcher: Send,

§

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

§

impl<'a, P> Send for radix_engine_common::prelude::rust::str::Split<'a, P>
where <P as Pattern<'a>>::Searcher: Send,

§

impl<'a, P> Send for radix_engine_common::prelude::rust::str::SplitInclusive<'a, P>
where <P as Pattern<'a>>::Searcher: Send,

§

impl<'a, P> Send for radix_engine_common::prelude::rust::str::SplitN<'a, P>
where <P as Pattern<'a>>::Searcher: Send,

§

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

§

impl<'a, T> !Send for radix_engine_common::prelude::rust::sync::mpsc::Iter<'a, T>

§

impl<'a, T> !Send for TryIter<'a, T>

§

impl<'a, T> Send for radix_engine_common::prelude::rust::prelude::btree_set::Iter<'a, T>
where T: Sync,

§

impl<'a, T> Send for radix_engine_common::prelude::rust::prelude::btree_set::Range<'a, T>
where T: Sync,

§

impl<'a, T> Send for radix_engine_common::prelude::rust::prelude::btree_set::SymmetricDifference<'a, T>
where T: Sync,

§

impl<'a, T> Send for radix_engine_common::prelude::rust::prelude::btree_set::Union<'a, T>
where T: Sync,

§

impl<'a, T> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::Drain<'a, T>
where T: Send,

§

impl<'a, T> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::Iter<'a, T>
where T: Sync,

§

impl<'a, T> Send for radix_engine_common::prelude::rust::result::Iter<'a, T>
where T: Sync,

§

impl<'a, T> Send for radix_engine_common::prelude::rust::result::IterMut<'a, T>
where T: Send,

§

impl<'a, T> Send for Chunks<'a, T>
where T: Sync,

§

impl<'a, T> Send for ChunksExact<'a, T>
where T: Sync,

§

impl<'a, T> Send for RChunks<'a, T>
where T: Sync,

§

impl<'a, T> Send for RChunksExact<'a, T>
where T: Sync,

§

impl<'a, T> Send for Windows<'a, T>
where T: Sync,

§

impl<'a, T, A> Send for radix_engine_common::prelude::rust::prelude::btree_set::Difference<'a, T, A>
where A: Sync, T: Sync,

§

impl<'a, T, A> Send for radix_engine_common::prelude::rust::prelude::btree_set::Intersection<'a, T, A>
where A: Sync, T: Sync,

§

impl<'a, T, F, A> Send for radix_engine_common::prelude::rust::prelude::btree_set::ExtractIf<'a, T, F, A>
where A: Send, F: Send, T: Send,

§

impl<'a, T, F, A> Send for radix_engine_common::prelude::rust::prelude::vec::ExtractIf<'a, T, F, A>
where A: Send, F: Send, T: Send,

§

impl<'a, T, P> Send for ChunkBy<'a, T, P>
where P: Send, T: Sync,

§

impl<'a, T, P> Send for ChunkByMut<'a, T, P>
where P: Send, T: Send,

§

impl<'a, T, P> Send for radix_engine_common::prelude::rust::slice::RSplit<'a, T, P>
where P: Send, T: Sync,

§

impl<'a, T, P> Send for RSplitMut<'a, T, P>
where P: Send, T: Send,

§

impl<'a, T, P> Send for radix_engine_common::prelude::rust::slice::RSplitN<'a, T, P>
where P: Send, T: Sync,

§

impl<'a, T, P> Send for RSplitNMut<'a, T, P>
where P: Send, T: Send,

§

impl<'a, T, P> Send for radix_engine_common::prelude::rust::slice::Split<'a, T, P>
where P: Send, T: Sync,

§

impl<'a, T, P> Send for radix_engine_common::prelude::rust::slice::SplitInclusive<'a, T, P>
where P: Send, T: Sync,

§

impl<'a, T, P> Send for SplitInclusiveMut<'a, T, P>
where P: Send, T: Send,

§

impl<'a, T, P> Send for SplitMut<'a, T, P>
where P: Send, T: Send,

§

impl<'a, T, P> Send for radix_engine_common::prelude::rust::slice::SplitN<'a, T, P>
where P: Send, T: Sync,

§

impl<'a, T, P> Send for SplitNMut<'a, T, P>
where P: Send, T: Send,

§

impl<'a, T, S1, S2> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::SymmetricDifference<'a, T, S1, S2>
where S1: Sync, S2: Sync, T: Sync,

§

impl<'a, T, S> Send for radix_engine_common::prelude::rust::prelude::hash_set::Difference<'a, T, S>
where S: Sync, T: Sync,

§

impl<'a, T, S> Send for radix_engine_common::prelude::rust::prelude::hash_set::Intersection<'a, T, S>
where S: Sync, T: Sync,

§

impl<'a, T, S> Send for radix_engine_common::prelude::rust::prelude::hash_set::SymmetricDifference<'a, T, S>
where S: Sync, T: Sync,

§

impl<'a, T, S> Send for radix_engine_common::prelude::rust::prelude::hash_set::Union<'a, T, S>
where S: Sync, T: Sync,

§

impl<'a, T, S> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::Difference<'a, T, S>
where S: Sync, T: Sync,

§

impl<'a, T, S> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::Intersection<'a, T, S>
where S: Sync, T: Sync,

§

impl<'a, T, S> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::Union<'a, T, S>
where S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for radix_engine_common::prelude::rust::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where T: Send,

§

impl<'a, TValue: ?Sized, TContext> Send for ContextDisplayable<'a, TValue, TContext>
where TContext: Send, TValue: Sync,

§

impl<'a, TValue: ?Sized, TContext> Send for ContextSerializable<'a, TValue, TContext>
where TContext: Send, TValue: Sync,

§

impl<'a, X> Send for VecEncoder<'a, X>
where X: Send,

§

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

§

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

§

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

§

impl<'de> Send for TerminalValueBatchRef<'de>

§

impl<'de, 's, E> Send for TypedTraverser<'de, 's, E>

§

impl<'de, C> Send for TraversalEvent<'de, C>

§

impl<'de, C> Send for VecTraverser<'de, C>

§

impl<'de, E> Send for TypedTraversalEvent<'de, E>

§

impl<'de, T> Send for TerminalValueRef<'de, T>

§

impl<'de, X> Send for VecDecoder<'de, X>
where X: Send,

§

impl<'m> Send for ArrayData<'m>

§

impl<'m> Send for MapData<'m>

§

impl<'s> Send for ContainerType<'s>

§

impl<'s> Send for EnumVariantData<'s>

§

impl<'s> Send for TupleData<'s>

§

impl<'s, 'a, E> Send for SerializationParameters<'s, 'a, E>

§

impl<'s, 'a, E> Send for ValueDisplayParameters<'s, 'a, E>

§

impl<'s, 'a, E> Send for NestedStringDisplayContext<'s, 'a, E>

§

impl<'s, 'a, E> Send for RustLikeDisplayContext<'s, 'a, E>

§

impl<'s, 'a, E> Send for SerializationContext<'s, 'a, E>

§

impl<'s, E> Send for FullLocation<'s, E>

§

impl<'s, E> Send for LocatedValidationError<'s, E>

§

impl<'t, 'de, 's1, 's2, E> Send for SerializableFields<'t, 'de, 's1, 's2, E>

§

impl<'t, 'de, 's1, E> Send for SerializableArrayElements<'t, 'de, 's1, E>

§

impl<'t, 'de, 's1, E> Send for SerializableMapElements<'t, 'de, 's1, E>

§

impl<'t, 'de, 's1, E> Send for SerializableMapEntry<'t, 'de, 's1, E>

§

impl<'t, 'de, C> Send for LocatedTraversalEvent<'t, 'de, C>

§

impl<'t, 's, 'de, E> Send for TypedLocatedTraversalEvent<'t, 's, 'de, E>

§

impl<'t, 's, C> Send for TypedLocation<'t, 's, C>

§

impl<'t, C> Send for Location<'t, C>

§

impl<A> Send for Repeat<A>
where A: Send,

§

impl<A> Send for RepeatN<A>
where A: Send,

§

impl<A> Send for radix_engine_common::prelude::rust::option::IntoIter<A>
where A: Send,

§

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

§

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

§

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

§

impl<C> Send for ContainerHeader<C>

§

impl<C> Send for ContainerState<C>

§

impl<C> Send for TypeAggregator<C>

§

impl<C, L> Send for TypeKind<C, L>
where C: Send, L: Send,

§

impl<C, L> Send for TypeData<C, L>
where C: Send, L: Send, <C as CustomTypeKind<L>>::CustomTypeValidation: Send,

§

impl<E> Send for SerializationError<E>

§

impl<E> Send for TypeMismatchError<E>

§

impl<E> Send for TypedTraversalError<E>

§

impl<E> Send for PayloadValidationError<E>

§

impl<E> Send for TypeValidation<E>
where E: Send,

§

impl<E> Send for CurrentValueInfo<E>

§

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

§

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

§

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

§

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

§

impl<H> Send for BuildHasherDefault<H>

§

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

§

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

§

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

§

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

§

impl<I> Send for Flatten<I>
where I: Send, <<I as Iterator>::Item as IntoIterator>::IntoIter: Send,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<I, F> Send for Map<I, F>
where F: Send, I: Send,

§

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

§

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

§

impl<I, P> Send for Filter<I, P>
where I: Send, P: Send,

§

impl<I, P> Send for MapWhile<I, P>
where I: Send, P: Send,

§

impl<I, P> Send for SkipWhile<I, P>
where I: Send, P: Send,

§

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

§

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

§

impl<I, U, F> Send for FlatMap<I, U, F>
where F: Send, I: Send, <U as IntoIterator>::IntoIter: Send,

§

impl<I, const N: usize> Send for radix_engine_common::prelude::rust::iter::ArrayChunks<I, N>
where I: Send, <I as Iterator>::Item: Send,

§

impl<Idx> Send for radix_engine_common::prelude::rust::ops::Range<Idx>
where Idx: Send,

§

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

§

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

§

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

§

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

§

impl<K> Send for radix_engine_common::prelude::rust::prelude::hash_set::IntoIter<K>
where K: Send,

§

impl<K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::IntoIter<K, V>
where K: Send, V: Send,

§

impl<K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::IntoKeys<K, V>
where K: Send, V: Send,

§

impl<K, V> Send for radix_engine_common::prelude::rust::prelude::hash_map::IntoValues<K, V>
where K: Send, V: Send,

§

impl<K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::IntoIter<K, V>
where K: Send, V: Send,

§

impl<K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::IntoKeys<K, V>
where K: Send, V: Send,

§

impl<K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::IntoValues<K, V>
where K: Send, V: Send,

§

impl<K, V> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::map::Slice<K, V>
where K: Send, V: Send,

§

impl<K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::IntoIter<K, V, A>
where A: Send, K: Send, V: Send,

§

impl<K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::IntoKeys<K, V, A>
where A: Send, K: Send, V: Send,

§

impl<K, V, A> Send for radix_engine_common::prelude::rust::prelude::btree_map::IntoValues<K, V, A>
where A: Send, K: Send, V: Send,

§

impl<K, V, A> Send for BTreeMap<K, V, A>
where A: Send, K: Send, V: Send,

§

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

§

impl<K, V, S> Send for IndexMap<K, V, S>
where K: Send, S: Send, V: Send,

§

impl<K, V, S> Send for NonIterMap<K, V, S>
where K: Send, S: Send, V: Send,

§

impl<S> Send for VersionedSchema<S>

§

impl<S> Send for SchemaV1<S>

§

impl<T> !Send for UniqueRc<T>

§

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

§

impl<T> Send for TryLockError<T>
where T: Send,

§

impl<T> Send for TrySendError<T>
where T: Send,

§

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

§

impl<T> Send for UpdateResult<T>
where T: Send,

§

impl<T> Send for FullyScopedTypeId<T>
where T: Send,

§

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

§

impl<T> Send for Empty<T>

§

impl<T> Send for radix_engine_common::prelude::rust::iter::Once<T>
where T: Send,

§

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

§

impl<T> Send for Discriminant<T>

§

impl<T> Send for NonZero<T>
where T: Send,

§

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

§

impl<T> Send for Wrapping<T>
where T: Send,

§

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

§

impl<T> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::IntoIter<T>
where T: Send,

§

impl<T> Send for radix_engine_common::prelude::rust::prelude::index_map::indexmap::set::Slice<T>
where T: Send,

§

impl<T> Send for radix_engine_common::prelude::rust::result::IntoIter<T>
where T: Send,

§

impl<T> Send for radix_engine_common::prelude::rust::sync::mpsc::IntoIter<T>
where T: Send,

§

impl<T> Send for SendError<T>
where T: Send,

§

impl<T> Send for PoisonError<T>
where T: Send,

§

impl<T> Send for NumericValidation<T>
where T: Send,

§

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

§

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

§

impl<T, A> Send for radix_engine_common::prelude::rust::prelude::btree_set::IntoIter<T, A>
where A: Send, T: Send,

§

impl<T, A> Send for BTreeSet<T, A>
where A: Send, T: Send,

§

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

§

impl<T, A> Send for VecDeque<T, A>
where A: Send, T: Send,

§

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

§

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

§

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

§

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

§

impl<T, S> Send for HashSet<T, S>
where S: Send, T: Send,

§

impl<T, S> Send for IndexSet<T, S>
where S: Send, T: Send,

§

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

§

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

§

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

§

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

§

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

§

impl<T: ?Sized, A> Send for Box<T, A>
where A: Send, T: Send,

§

impl<X> Send for ExpectedStart<X>
where X: Send,

§

impl<X> Send for NextEventOverride<X>
where X: Send,

§

impl<X> Send for ValueKind<X>
where X: Send,

§

impl<X> Send for ArrayHeader<X>
where X: Send,

§

impl<X> Send for MapHeader<X>
where X: Send,

§

impl<X> Send for ValueTreeSummary<X>
where X: Send,

§

impl<X, Y> Send for Value<X, Y>
where X: Send, Y: Send,

§

impl<X, Y> Send for EnumVariantValue<X, Y>
where X: Send, Y: Send,

§

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

§

impl<const DISCRIMINATOR: u8, T> Send for FixedEnumVariant<DISCRIMINATOR, T>
where T: Send,