Trait scrypto::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.36.0 · source§

impl Send for Waker

1.6.0 · source§

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

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 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 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 scrypto::prelude::radix_engine_common::prelude::rust::slice::Iter<'_, T>
where T: Sync,

source§

impl<T> Send for scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::rust::sync::mpsc::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 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 scrypto::prelude::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 scrypto::api::node_modules::metadata::vec::Drain<'_, T, A>
where T: Send, A: Send + Allocator,

source§

impl<T, A> Send for scrypto::api::node_modules::metadata::vec::IntoIter<T, A>
where T: Send, 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 Arc<T, A>
where T: Sync + Send + ?Sized, A: Allocator + Send,

1.4.0 · source§

impl<T, A> Send for scrypto::prelude::radix_engine_common::prelude::rust::sync::Weak<T, A>
where T: Sync + Send + ?Sized, 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 AddressBech32DecodeError

§

impl Send for AddressBech32EncodeError

§

impl Send for AttachedModuleId

§

impl Send for KeyValueStoreDataSchema

§

impl Send for ModuleId

§

impl Send for FallToOwner

§

impl Send for MetadataConversionError

§

impl Send for Proposer

§

impl Send for Role

§

impl Send for DefaultDepositRule

§

impl Send for ResourcePreference

§

impl Send for EpochChangeOutcome

§

impl Send for TimePrecisionV1

§

impl Send for TimePrecisionV2

§

impl Send for BlueprintPartitionType

§

impl Send for BlueprintPayloadDef

§

impl Send for BlueprintPayloadIdentifier

§

impl Send for BlueprintType

§

impl Send for FunctionAuth

§

impl Send for InputOrOutput

§

impl Send for KeyOrValue

§

impl Send for MethodAuthTemplate

§

impl Send for PartitionDescription

§

impl Send for RoleSpecification

§

impl Send for SystemInstruction

§

impl Send for VmType

§

impl Send for AccessRule

§

impl Send for AccessRuleNode

§

impl Send for GlobalCaller

§

impl Send for MethodAccessibility

§

impl Send for NonFungibleDataSchema

§

impl Send for OwnerRole

§

impl Send for OwnerRoleUpdater

§

impl Send for ParseNonFungibleGlobalIdError

§

impl Send for ProofRule

§

impl Send for ResourceError

§

impl Send for ResourceFeature

§

impl Send for ResourceOrNonFungible

§

impl Send for ResourceType

§

impl Send for WithdrawStrategy

§

impl Send for InstructionOutput

§

impl Send for ComponentCastError

§

impl Send for ObjectStubHandle

§

impl Send for ParseBlsPublicKeyError

§

impl Send for ParseBlsSignatureError

§

impl Send for ParseEd25519PublicKeyError

§

impl Send for ParseEd25519SignatureError

§

impl Send for ParseHashError

§

impl Send for ParseSecp256k1PublicKeyError

§

impl Send for ParseSecp256k1SignatureError

§

impl Send for PublicKey

§

impl Send for PublicKeyHash

§

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 ManifestExpression

§

impl Send for ManifestNonFungibleLocalId

§

impl Send for ManifestNonFungibleLocalIdValidationError

§

impl Send for ParseManifestAddressReservationError

§

impl Send for ParseManifestBlobRefError

§

impl Send for ParseManifestBucketError

§

impl Send for ParseManifestDecimalError

§

impl Send for ParseManifestExpressionError

§

impl Send for ParseManifestPreciseDecimalError

§

impl Send for ParseManifestProofError

§

impl Send for OwnValidation

§

impl Send for ReferenceValidation

§

impl Send for ScryptoCustomTraversal

§

impl Send for ScryptoCustomTypeKind

§

impl Send for ScryptoCustomTypeValidation

§

impl Send for ScryptoCustomValue

§

impl Send for ScryptoCustomValueKind

§

impl Send for ContentValidationError

§

impl Send for NonFungibleIdType

§

impl Send for NonFungibleLocalId

§

impl Send for ParseNonFungibleLocalIdError

§

impl Send for ParseOwnError

§

impl Send for ParseReferenceError

§

impl Send for ParseDecimalError

§

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 ParsePreciseDecimalError

§

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 RoundingMode

§

impl Send for ModuleHandle

§

impl Send for Mutability

§

impl Send for ParseNetworkError

§

impl Send for DataOrigin

§

impl Send for BlueprintHook

§

impl Send for Condition

§

impl Send for FieldTransience

§

impl Send for GenericBound

§

impl Send for scrypto::schema::Receiver

§

impl Send for DateTimeError

§

impl Send for ParseUtcDateTimeError

§

impl Send for TimeComparisonOperator

§

impl Send for AccessControllerPartitionOffset

§

impl Send for AccountPartitionOffset

§

impl Send for AuthZoneField

§

impl Send for BootLoaderField

§

impl Send for ComponentField

§

impl Send for ComponentRoyaltyPartitionOffset

§

impl Send for ConsensusManagerPartitionOffset

§

impl Send for Emitter

§

impl Send for EntityType

§

impl Send for FungibleBucketField

§

impl Send for FungibleProofField

§

impl Send for FungibleResourceManagerPartitionOffset

§

impl Send for FungibleVaultPartitionOffset

§

impl Send for GenericSubstitution

§

impl Send for Level

§

impl Send for MetadataPartitionOffset

§

impl Send for MultiResourcePoolPartitionOffset

§

impl Send for NonFungibleBucketField

§

impl Send for NonFungibleProofField

§

impl Send for NonFungibleResourceManagerPartitionOffset

§

impl Send for NonFungibleVaultPartitionOffset

§

impl Send for ObjectType

§

impl Send for OneResourcePoolPartitionOffset

§

impl Send for OuterObjectInfo

§

impl Send for PackageCode

§

impl Send for PackagePartitionOffset

§

impl Send for PackageRoyalty

§

impl Send for PackageRoyaltyConfig

§

impl Send for ParseComponentAddressError

§

impl Send for ParseError

§

impl Send for ParseGlobalAddressError

§

impl Send for ParseInternalAddressError

§

impl Send for ParsePackageAddressError

§

impl Send for ParseResourceAddressError

§

impl Send for RoleAssignmentPartitionOffset

§

impl Send for RoyaltyAmount

§

impl Send for RoyaltyField

§

impl Send for SubstateKey

§

impl Send for TransactionTrackerField

§

impl Send for TwoResourcePoolPartitionOffset

§

impl Send for TypeInfoField

§

impl Send for ValidatorPartitionOffset

§

impl Send for WorktopField

§

impl Send for ChildNames

§

impl Send for DecodeError

§

impl Send for EncodeError

§

impl Send for LocalTypeId

§

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 RustTypeId

§

impl Send for SchemaValidationError

§

impl Send for ValidationError

§

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

§

impl Send for DisplayMode

§

impl Send for FormattingError

§

impl Send for PrintMode

§

impl Send for SerializationMode

§

impl Send for ValueContext

§

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

§

impl Send for Infallible

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for SearchStep

§

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

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AddressBech32Decoder

§

impl Send for AddressBech32Encoder

§

impl Send for HrpSet

§

impl Send for AuthAddresses

§

impl Send for RoleAssignmentCreateInput

§

impl Send for RoleAssignmentGetInput

§

impl Send for RoleAssignmentLockOwnerInput

§

impl Send for RoleAssignmentSetInput

§

impl Send for RoleAssignmentSetOwnerInput

§

impl Send for CheckedOrigin

§

impl Send for CheckedUrl

§

impl Send for MetadataCreateInput

§

impl Send for MetadataCreateWithDataInput

§

impl Send for MetadataGetInput

§

impl Send for MetadataLockInput

§

impl Send for MetadataRemoveInput

§

impl Send for MetadataSetInput

§

impl Send for UncheckedOrigin

§

impl Send for UncheckedUrl

§

impl Send for ComponentClaimRoyaltiesInput

§

impl Send for ComponentRoyaltyCreateInput

§

impl Send for ComponentRoyaltyLockInput

§

impl Send for ComponentRoyaltySetInput

§

impl Send for ComponentRoyaltySubstate

§

impl Send for AttachedModuleIdIter

§

impl Send for EventFlags

§

impl Send for FieldValue

§

impl Send for GenericArgs

§

impl Send for KVEntry

§

impl Send for LocalKeyValueStoreDataSchema

§

impl Send for LockFlags

§

impl Send for ModuleIdIter

§

impl Send for RemoteKeyValueStoreDataSchema

§

impl Send for AccessControllerCancelPrimaryRoleBadgeWithdrawAttemptInput

§

impl Send for AccessControllerCancelPrimaryRoleRecoveryProposalInput

§

impl Send for AccessControllerCancelRecoveryRoleBadgeWithdrawAttemptInput

§

impl Send for AccessControllerCancelRecoveryRoleRecoveryProposalInput

§

impl Send for AccessControllerCreateInput

§

impl Send for AccessControllerCreateManifestInput

§

impl Send for AccessControllerCreateProofInput

§

impl Send for AccessControllerInitiateBadgeWithdrawAttemptAsPrimaryInput

§

impl Send for AccessControllerInitiateBadgeWithdrawAttemptAsRecoveryInput

§

impl Send for AccessControllerInitiateRecoveryAsPrimaryInput

§

impl Send for AccessControllerInitiateRecoveryAsRecoveryInput

§

impl Send for AccessControllerLockPrimaryRoleInput

§

impl Send for AccessControllerMintRecoveryBadgesInput

§

impl Send for AccessControllerObjectTypeInfo

§

impl Send for AccessControllerQuickConfirmPrimaryRoleBadgeWithdrawAttemptInput

§

impl Send for AccessControllerQuickConfirmPrimaryRoleRecoveryProposalInput

§

impl Send for AccessControllerQuickConfirmRecoveryRoleBadgeWithdrawAttemptInput

§

impl Send for AccessControllerQuickConfirmRecoveryRoleRecoveryProposalInput

§

impl Send for AccessControllerStopTimedRecoveryInput

§

impl Send for AccessControllerTimedConfirmRecoveryInput

§

impl Send for AccessControllerUnlockPrimaryRoleInput

§

impl Send for RecoveryProposal

§

impl Send for RuleSet

§

impl Send for AccountAddAuthorizedDepositorInput

§

impl Send for AccountBurnInput

§

impl Send for AccountBurnNonFungiblesInput

§

impl Send for AccountCreateAdvancedInput

§

impl Send for AccountCreateAdvancedManifestInput

§

impl Send for AccountCreateInput

§

impl Send for AccountCreateProofOfAmountInput

§

impl Send for AccountCreateProofOfNonFungiblesInput

§

impl Send for AccountDepositBatchInput

§

impl Send for AccountDepositBatchManifestInput

§

impl Send for AccountDepositInput

§

impl Send for AccountDepositManifestInput

§

impl Send for AccountLockContingentFeeInput

§

impl Send for AccountLockFeeAndWithdrawInput

§

impl Send for AccountLockFeeAndWithdrawNonFungiblesInput

§

impl Send for AccountLockFeeInput

§

impl Send for AccountObjectTypeInfo

§

impl Send for AccountRemoveAuthorizedDepositorInput

§

impl Send for AccountRemoveResourcePreferenceInput

§

impl Send for AccountSecurifyInput

§

impl Send for AccountSetDefaultDepositRuleInput

§

impl Send for AccountSetResourcePreferenceInput

§

impl Send for AccountTryDepositBatchOrAbortInput

§

impl Send for AccountTryDepositBatchOrAbortManifestInput

§

impl Send for AccountTryDepositBatchOrRefundInput

§

impl Send for AccountTryDepositBatchOrRefundManifestInput

§

impl Send for AccountTryDepositOrAbortInput

§

impl Send for AccountTryDepositOrAbortManifestInput

§

impl Send for AccountTryDepositOrRefundInput

§

impl Send for AccountTryDepositOrRefundManifestInput

§

impl Send for AccountWithdrawInput

§

impl Send for AccountWithdrawNonFungiblesInput

§

impl Send for ConsensusManagerCompareCurrentTimeInputV1

§

impl Send for ConsensusManagerCompareCurrentTimeInputV2

§

impl Send for ConsensusManagerConfig

§

impl Send for ConsensusManagerCreateInput

§

impl Send for ConsensusManagerCreateManifestInput

§

impl Send for ConsensusManagerCreateValidatorInput

§

impl Send for ConsensusManagerCreateValidatorManifestInput

§

impl Send for ConsensusManagerGetCurrentEpochInput

§

impl Send for ConsensusManagerGetCurrentTimeInputV1

§

impl Send for ConsensusManagerGetCurrentTimeInputV2

§

impl Send for ConsensusManagerNextRoundInput

§

impl Send for ConsensusManagerObjectTypeInfo

§

impl Send for ConsensusManagerStartInput

§

impl Send for EpochChangeCondition

§

impl Send for LeaderProposalHistory

§

impl Send for ValidatorAcceptsDelegatedStakeInput

§

impl Send for ValidatorApplyEmissionInput

§

impl Send for ValidatorApplyRewardInput

§

impl Send for ValidatorClaimXrdInput

§

impl Send for ValidatorClaimXrdManifestInput

§

impl Send for ValidatorFinishUnlockOwnerStakeUnitsInput

§

impl Send for ValidatorGetProtocolUpdateReadinessInput

§

impl Send for ValidatorGetRedemptionValueInput

§

impl Send for ValidatorLockOwnerStakeUnitsInput

§

impl Send for ValidatorLockOwnerStakeUnitsManifestInput

§

impl Send for ValidatorObjectTypeInfo

§

impl Send for ValidatorRegisterInput

§

impl Send for ValidatorSignalProtocolUpdateReadinessInput

§

impl Send for ValidatorStakeAsOwnerInput

§

impl Send for ValidatorStakeAsOwnerManifestInput

§

impl Send for ValidatorStakeInput

§

impl Send for ValidatorStakeManifestInput

§

impl Send for ValidatorStartUnlockOwnerStakeUnitsInput

§

impl Send for ValidatorTotalStakeUnitSupplyInput

§

impl Send for ValidatorTotalStakeXrdAmountInput

§

impl Send for ValidatorUnregisterInput

§

impl Send for ValidatorUnstakeInput

§

impl Send for ValidatorUnstakeManifestInput

§

impl Send for ValidatorUpdateAcceptDelegatedStakeInput

§

impl Send for ValidatorUpdateFeeInput

§

impl Send for ValidatorUpdateKeyInput

§

impl Send for IdentityCreateAdvancedInput

§

impl Send for IdentityCreateInput

§

impl Send for IdentityObjectTypeInfo

§

impl Send for IdentitySecurifyToSingleBadgeInput

§

impl Send for AuthConfig

§

impl Send for BlueprintDefinition

§

impl Send for BlueprintDefinitionInit

§

impl Send for BlueprintDependencies

§

impl Send for BlueprintInterface

§

impl Send for BlueprintVersion

§

impl Send for BlueprintVersionKey

§

impl Send for CanonicalBlueprintId

§

impl Send for CodeHash

§

impl Send for FunctionSchema

§

impl Send for IndexedStateSchema

§

impl Send for PackageClaimRoyaltiesInput

§

impl Send for PackageDefinition

§

impl Send for PackageExport

§

impl Send for PackagePublishNativeInput

§

impl Send for PackagePublishNativeManifestInput

§

impl Send for PackagePublishWasmAdvancedInput

§

impl Send for PackagePublishWasmAdvancedManifestInput

§

impl Send for PackagePublishWasmInput

§

impl Send for PackagePublishWasmManifestInput

§

impl Send for StaticRoleDefinition

§

impl Send for MultiResourcePoolContributeInput

§

impl Send for MultiResourcePoolContributeManifestInput

§

impl Send for MultiResourcePoolGetRedemptionValueInput

§

impl Send for MultiResourcePoolGetRedemptionValueManifestInput

§

impl Send for MultiResourcePoolGetVaultAmountsInput

§

impl Send for MultiResourcePoolGetVaultAmountsManifestInput

§

impl Send for MultiResourcePoolInstantiateInput

§

impl Send for MultiResourcePoolInstantiateManifestInput

§

impl Send for MultiResourcePoolObjectTypeInfo

§

impl Send for MultiResourcePoolProtectedDepositInput

§

impl Send for MultiResourcePoolProtectedDepositManifestInput

§

impl Send for MultiResourcePoolProtectedWithdrawInput

§

impl Send for MultiResourcePoolProtectedWithdrawManifestInput

§

impl Send for MultiResourcePoolRedeemInput

§

impl Send for MultiResourcePoolRedeemManifestInput

§

impl Send for OneResourcePoolContributeInput

§

impl Send for OneResourcePoolContributeManifestInput

§

impl Send for OneResourcePoolGetRedemptionValueInput

§

impl Send for OneResourcePoolGetRedemptionValueManifestInput

§

impl Send for OneResourcePoolGetVaultAmountInput

§

impl Send for OneResourcePoolGetVaultAmountManifestInput

§

impl Send for OneResourcePoolInstantiateInput

§

impl Send for OneResourcePoolInstantiateManifestInput

§

impl Send for OneResourcePoolObjectTypeInfo

§

impl Send for OneResourcePoolProtectedDepositInput

§

impl Send for OneResourcePoolProtectedDepositManifestInput

§

impl Send for OneResourcePoolProtectedWithdrawInput

§

impl Send for OneResourcePoolProtectedWithdrawManifestInput

§

impl Send for OneResourcePoolRedeemInput

§

impl Send for OneResourcePoolRedeemManifestInput

§

impl Send for TwoResourcePoolContributeInput

§

impl Send for TwoResourcePoolContributeManifestInput

§

impl Send for TwoResourcePoolGetRedemptionValueInput

§

impl Send for TwoResourcePoolGetRedemptionValueManifestInput

§

impl Send for TwoResourcePoolGetVaultAmountsInput

§

impl Send for TwoResourcePoolGetVaultAmountsManifestInput

§

impl Send for TwoResourcePoolInstantiateInput

§

impl Send for TwoResourcePoolInstantiateManifestInput

§

impl Send for TwoResourcePoolObjectTypeInfo

§

impl Send for TwoResourcePoolProtectedDepositInput

§

impl Send for TwoResourcePoolProtectedDepositManifestInput

§

impl Send for TwoResourcePoolProtectedWithdrawInput

§

impl Send for TwoResourcePoolProtectedWithdrawManifestInput

§

impl Send for TwoResourcePoolRedeemInput

§

impl Send for TwoResourcePoolRedeemManifestInput

§

impl Send for AuthZoneAssertAccessRuleInput

§

impl Send for AuthZoneCreateProofOfAllInput

§

impl Send for AuthZoneCreateProofOfAmountInput

§

impl Send for AuthZoneCreateProofOfNonFungiblesInput

§

impl Send for AuthZoneDrainInput

§

impl Send for AuthZoneDropProofsInput

§

impl Send for AuthZoneDropRegularProofsInput

§

impl Send for AuthZoneDropSignatureProofsInput

§

impl Send for AuthZonePopInput

§

impl Send for AuthZonePushInput

§

impl Send for AuthZoneRef

§

impl Send for scrypto::blueprints::resource::Bucket

§

impl Send for BucketCreateProofOfAllInput

§

impl Send for BucketGetAmountInput

§

impl Send for BucketGetNonFungibleLocalIdsInput

§

impl Send for BucketGetResourceAddressInput

§

impl Send for BucketPutInput

§

impl Send for BucketTakeAdvancedInput

§

impl Send for BucketTakeInput

§

impl Send for BucketTakeNonFungiblesInput

§

impl Send for FungibleBucket

§

impl Send for FungibleBucketCreateProofOfAmountInput

§

impl Send for FungibleBucketLockAmountInput

§

impl Send for FungibleBucketUnlockAmountInput

§

impl Send for FungibleProof

§

impl Send for FungibleResourceManagerCreateInput

§

impl Send for FungibleResourceManagerCreateManifestInput

§

impl Send for FungibleResourceManagerCreateWithInitialSupplyInput

§

impl Send for FungibleResourceManagerCreateWithInitialSupplyManifestInput

§

impl Send for FungibleResourceManagerMintInput

§

impl Send for FungibleResourceRoles

§

impl Send for FungibleVault

§

impl Send for FungibleVaultCreateProofOfAmountInput

§

impl Send for FungibleVaultLockFeeInput

§

impl Send for FungibleVaultLockFungibleAmountInput

§

impl Send for FungibleVaultUnlockFungibleAmountInput

§

impl Send for LiquidFungibleResource

§

impl Send for LiquidNonFungibleResource

§

impl Send for LiquidNonFungibleVault

§

impl Send for LocalNonFungibleDataSchema

§

impl Send for LockedFungibleResource

§

impl Send for LockedNonFungibleResource

§

impl Send for MethodKey

§

impl Send for ModuleRoleKey

§

impl Send for NonFungibleBucket

§

impl Send for NonFungibleBucketContainsNonFungibleInput

§

impl Send for NonFungibleBucketCreateProofOfNonFungiblesInput

§

impl Send for NonFungibleBucketLockNonFungiblesInput

§

impl Send for NonFungibleBucketUnlockNonFungiblesInput

§

impl Send for NonFungibleGlobalId

§

impl Send for NonFungibleProof

§

impl Send for NonFungibleProofGetLocalIdsInput

§

impl Send for NonFungibleResourceManagerCreateInput

§

impl Send for NonFungibleResourceManagerCreateManifestInput

§

impl Send for NonFungibleResourceManagerCreateRuidWithInitialSupplyInput

§

impl Send for NonFungibleResourceManagerCreateRuidWithInitialSupplyManifestInput

§

impl Send for NonFungibleResourceManagerCreateWithInitialSupplyInput

§

impl Send for NonFungibleResourceManagerCreateWithInitialSupplyManifestInput

§

impl Send for NonFungibleResourceManagerExistsInput

§

impl Send for NonFungibleResourceManagerGetNonFungibleInput

§

impl Send for NonFungibleResourceManagerMintInput

§

impl Send for NonFungibleResourceManagerMintManifestInput

§

impl Send for NonFungibleResourceManagerMintRuidInput

§

impl Send for NonFungibleResourceManagerMintRuidManifestInput

§

impl Send for NonFungibleResourceManagerMintSingleRuidInput

§

impl Send for NonFungibleResourceManagerUpdateDataInput

§

impl Send for NonFungibleResourceManagerUpdateDataManifestInput

§

impl Send for NonFungibleResourceRoles

§

impl Send for NonFungibleVault

§

impl Send for NonFungibleVaultBurnNonFungiblesInput

§

impl Send for NonFungibleVaultContainsNonFungibleInput

§

impl Send for NonFungibleVaultCreateProofOfNonFungiblesInput

§

impl Send for NonFungibleVaultGetNonFungibleLocalIdsInput

§

impl Send for NonFungibleVaultLockNonFungiblesInput

§

impl Send for NonFungibleVaultRecallNonFungiblesInput

§

impl Send for NonFungibleVaultTakeNonFungiblesInput

§

impl Send for NonFungibleVaultUnlockNonFungiblesInput

§

impl Send for OwnedWorktop

§

impl Send for OwnerRoleEntry

§

impl Send for Proof

§

impl Send for ProofCloneInput

§

impl Send for ProofDropInput

§

impl Send for ProofGetAmountInput

§

impl Send for ProofGetResourceAddressInput

§

impl Send for RemoteNonFungibleDataSchema

§

impl Send for ResourceManagerBurnInput

§

impl Send for ResourceManagerCreateEmptyBucketInput

§

impl Send for ResourceManagerCreateEmptyVaultInput

§

impl Send for ResourceManagerDropEmptyBucketInput

§

impl Send for ResourceManagerGetAmountForWithdrawalInput

§

impl Send for ResourceManagerGetResourceTypeInput

§

impl Send for ResourceManagerGetTotalSupplyInput

§

impl Send for ResourceManagerPackageBurnInput

§

impl Send for ResourceOrNonFungibleList

§

impl Send for RoleAssignmentInit

§

impl Send for RoleKey

§

impl Send for RoleList

§

impl Send for Vault

§

impl Send for VaultBurnInput

§

impl Send for VaultFreezeFlags

§

impl Send for VaultFreezeInput

§

impl Send for VaultFrozenFlag

§

impl Send for VaultGetAmountInput

§

impl Send for VaultPutInput

§

impl Send for VaultRecallInput

§

impl Send for VaultTakeAdvancedInput

§

impl Send for VaultTakeInput

§

impl Send for VaultUnfreezeInput

§

impl Send for WorktopAssertContainsAmountInput

§

impl Send for WorktopAssertContainsInput

§

impl Send for WorktopAssertContainsNonFungiblesInput

§

impl Send for WorktopDrainInput

§

impl Send for WorktopDropInput

§

impl Send for WorktopPutInput

§

impl Send for WorktopTakeAllInput

§

impl Send for WorktopTakeInput

§

impl Send for WorktopTakeNonFungiblesInput

§

impl Send for TestUtilsPanicInput

§

impl Send for AnyComponent

§

impl Send for PackageStub

§

impl Send for AccessController

§

impl Send for Account

§

impl Send for ConsensusManager

§

impl Send for Faucet

§

impl Send for Identity

§

impl Send for MultiResourcePool

§

impl Send for OneResourcePool

§

impl Send for TwoResourcePool

§

impl Send for Validator

§

impl Send for ALWAYS_VISIBLE_GLOBAL_NODES

§

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 Secp256k1PrivateKey

§

impl Send for Secp256k1PublicKey

§

impl Send for Secp256k1PublicKeyHash

§

impl Send for Secp256k1Signature

§

impl Send for CryptoUtils

§

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 ManifestArgs

§

impl Send for ManifestCustomTerminalValueRef

§

impl Send for BytesNonFungibleLocalId

§

impl Send for IntegerNonFungibleLocalId

§

impl Send for Own

§

impl Send for RUIDNonFungibleLocalId

§

impl Send for Reference

§

impl Send for StringNonFungibleLocalId

§

impl Send for ScryptoCustomExtension

§

impl Send for ScryptoCustomSchema

§

impl Send for ScryptoCustomTerminalValueRef

§

impl Send for ScryptoVmV1Api

§

impl Send for Decimal

§

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 PreciseDecimal

§

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 Metadata

§

impl Send for RoleAssignment

§

impl Send for Royalty

§

impl Send for NetworkDefinition

§

impl Send for CheckedFungibleProof

§

impl Send for CheckedNonFungibleProof

§

impl Send for CheckedProof

§

impl Send for FungibleResourceType

§

impl Send for ResourceBuilder

§

impl Send for ResourceManager

§

impl Send for ResourceManagerStub

§

impl Send for Clock

§

impl Send for LocalAuthZone

§

impl Send for Logger

§

impl Send for Runtime

§

impl Send for BlueprintEventSchemaInit

§

impl Send for BlueprintFunctionsSchemaInit

§

impl Send for BlueprintHooksInit

§

impl Send for BlueprintSchemaInit

§

impl Send for BlueprintStateSchemaInit

§

impl Send for BlueprintTypeSchemaInit

§

impl Send for FunctionSchemaInit

§

impl Send for KeyValueStoreGenericSubstitutions

§

impl Send for ReceiverInfo

§

impl Send for RefTypes

§

impl Send for Instant

§

impl Send for UtcDateTime

§

impl Send for BlueprintId

§

impl Send for BlueprintInfo

§

impl Send for BlueprintTypeIdentifier

§

impl Send for Buffer

§

impl Send for ComponentAddress

§

impl Send for ComponentRoyaltyConfig

§

impl Send for Epoch

§

impl Send for EventTypeIdentifier

§

impl Send for FnIdentifier

§

impl Send for GlobalAddress

§

impl Send for GlobalAddressPhantom

§

impl Send for GlobalAddressReservation

§

impl Send for IndexedScryptoValue

§

impl Send for InternalAddress

§

impl Send for KeyValueStoreInfo

§

impl Send for NodeId

§

impl Send for ObjectInfo

§

impl Send for PackageAddress

§

impl Send for PartitionNumber

§

impl Send for PartitionOffset

§

impl Send for ResourceAddress

§

impl Send for Round

§

impl Send for SchemaHash

§

impl Send for ScopedTypeId

§

impl Send for scrypto::types::Slice

§

impl Send for UnorderedKeyError

§

impl Send for Error

§

impl Send for TryReserveError

§

impl Send for AllocError

§

impl Send for scrypto::prelude::radix_engine_common::prelude::rust::alloc::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 scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::rust::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for EnumVariantHeader

§

impl Send for TupleHeader

§

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 SchemaContext

§

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 ClientCostingEntry<'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 scrypto::prelude::radix_engine_common::prelude::rust::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::hash_set::Drain<'a, K>
where K: Send,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, K, V> Send for scrypto::prelude::radix_engine_common::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 scrypto::prelude::radix_engine_common::prelude::btree_map::Values<'a, K, V>
where K: Sync, V: Sync,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, K, V, A> Send for scrypto::prelude::radix_engine_common::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 scrypto::prelude::radix_engine_common::prelude::btree_map::OccupiedEntry<'a, K, V, A>
where A: Send, K: Send, V: Send,

§

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

§

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

§

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

§

impl<'a, K, V, F, A> Send for scrypto::prelude::radix_engine_common::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 scrypto::prelude::radix_engine_common::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, O> Send for Attached<'a, O>
where O: 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 scrypto::prelude::radix_engine_common::prelude::rust::str::RSplit<'a, P>
where <P as Pattern<'a>>::Searcher: Send,

§

impl<'a, P> Send for scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::rust::str::Split<'a, P>
where <P as Pattern<'a>>::Searcher: Send,

§

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

§

impl<'a, P> Send for scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::rust::sync::mpsc::Iter<'a, T>

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T> Send for scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::btree_set::Difference<'a, T, A>
where A: Sync, T: Sync,

§

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

§

impl<'a, T, F, A> Send for scrypto::api::node_modules::metadata::vec::ExtractIf<'a, T, F, A>
where A: Send, F: Send, T: Send,

§

impl<'a, T, F, A> Send for scrypto::prelude::radix_engine_common::prelude::btree_set::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 scrypto::prelude::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 scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::rust::slice::Split<'a, T, P>
where P: Send, T: Sync,

§

impl<'a, T, P> Send for scrypto::prelude::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 scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::indexmap::set::SymmetricDifference<'a, T, S1, S2>
where S1: Sync, S2: Sync, T: Sync,

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, T, S> Send for scrypto::prelude::radix_engine_common::prelude::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 scrypto::prelude::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, V> Send for KeyValueEntryRef<'a, V>
where V: Send,

§

impl<'a, V> Send for KeyValueEntryRefMut<'a, V>
where V: Send,

§

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 scrypto::prelude::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 Blueprint<C>
where C: Send,

§

impl<C> Send for Globalizing<C>
where <C as HasStub>::Stub: Send,

§

impl<C> Send for scrypto::component::component::Owned<C>
where <C as HasStub>::Stub: Send,

§

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 PayloadValidationError<E>

§

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

§

impl<E> Send for SerializationError<E>

§

impl<E> Send for TypeMismatchError<E>

§

impl<E> Send for TypedTraversalError<E>

§

impl<E> Send for CurrentValueInfo<E>

§

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

§

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<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 scrypto::prelude::radix_engine_common::prelude::rust::iter::ArrayChunks<I, N>
where I: Send, <I as Iterator>::Item: Send,

§

impl<Idx> Send for scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::hash_set::IntoIter<K>
where K: Send,

§

impl<K, V> Send for KeyValueStore<K, V>
where K: Send, V: Send,

§

impl<K, V> Send for KeyValueStoreInit<K, V>
where K: Send, V: Send,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<K, V, A> Send for scrypto::prelude::radix_engine_common::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<O> Send for scrypto::component::component::Global<O>
where <O as HasStub>::Stub: Send,

§

impl<S> Send for CreateWithNoSupply<S>
where S: Send,

§

impl<S> Send for VersionedSchema<S>

§

impl<S> Send for NonFungibleResourceManagerCreateGenericInput<S>
where S: Send,

§

impl<S> Send for SchemaV1<S>

§

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

§

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

§

impl<T> !Send for UniqueRc<T>

§

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

§

impl<T> Send for TypeRef<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 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 MetadataRoles<T>
where T: Send,

§

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

§

impl<T> Send for scrypto::blueprints::component::Global<T>
where T: Send,

§

impl<T> Send for scrypto::blueprints::component::Owned<T>
where T: Send,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<T> Send for InProgressResourceBuilder<T>

§

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

§

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

§

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

§

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

§

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

§

impl<T> Send for Empty<T>

§

impl<T> Send for scrypto::prelude::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 scrypto::prelude::radix_engine_common::prelude::rust::result::IntoIter<T>
where T: Send,

§

impl<T> Send for scrypto::prelude::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 Vec<T, A>
where A: Send, T: Send,

§

impl<T, A> Send for scrypto::prelude::radix_engine_common::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 VecDeque<T, A>
where A: Send, T: Send,

§

impl<T, D, S> Send for NonFungibleResourceType<T, D, S>
where D: Send, S: 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<U, O> Send for GenericMetadataValue<U, O>
where O: Send, U: Send,

§

impl<V> Send for ComponentStatePointer<V>
where V: Send,

§

impl<V> Send for DataRef<V>
where V: Send,

§

impl<V> Send for DataRefMut<V>
where V: Send,

§

impl<V> Send for FieldSchema<V>
where V: Send,

§

impl<V> Send for KeyValueStoreInitEntry<V>
where V: Send,

§

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

§

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

§

impl<X> Send for NextEventOverride<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,