pub struct Pallet<T>(/* private fields */);Expand description
The Pallet struct, the main type that implements traits and standalone
functions within the pallet.
Implementations§
Source§impl<T: Config> Pallet<T>
 
impl<T: Config> Pallet<T>
pub fn send( origin: OriginFor<T>, dest: Box<VersionedLocation>, message: Box<VersionedXcm<()>>, ) -> DispatchResult
Sourcepub fn teleport_assets(
    origin: OriginFor<T>,
    dest: Box<VersionedLocation>,
    beneficiary: Box<VersionedLocation>,
    assets: Box<VersionedAssets>,
    fee_asset_item: u32,
) -> DispatchResult
 👎Deprecated: This extrinsic uses WeightLimit::Unlimited, please migrate to limited_teleport_assets or transfer_assets
pub fn teleport_assets( origin: OriginFor<T>, dest: Box<VersionedLocation>, beneficiary: Box<VersionedLocation>, assets: Box<VersionedAssets>, fee_asset_item: u32, ) -> DispatchResult
WeightLimit::Unlimited, please migrate to limited_teleport_assets or transfer_assetsTeleport some assets from the local chain to some destination chain.
This function is deprecated: Use limited_teleport_assets instead.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically be[Parent, Parachain(..)]to send from parachain to parachain, or[Parachain(..)]to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestchain.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Sourcepub fn reserve_transfer_assets(
    origin: OriginFor<T>,
    dest: Box<VersionedLocation>,
    beneficiary: Box<VersionedLocation>,
    assets: Box<VersionedAssets>,
    fee_asset_item: u32,
) -> DispatchResult
 👎Deprecated: This extrinsic uses WeightLimit::Unlimited, please migrate to limited_reserve_transfer_assets or transfer_assets
pub fn reserve_transfer_assets( origin: OriginFor<T>, dest: Box<VersionedLocation>, beneficiary: Box<VersionedLocation>, assets: Box<VersionedAssets>, fee_asset_item: u32, ) -> DispatchResult
WeightLimit::Unlimited, please migrate to limited_reserve_transfer_assets or transfer_assetsTransfer some assets from the local chain to the destination chain through their local, destination or remote reserve.
assets must have same reserve location and may not be teleportable to dest.
assetshave local reserve: transfer assets to sovereign account of destination chain and forward a notification XCM todestto mint and deposit reserve-based assets tobeneficiary.assetshave destination reserve: burn local assets and forward a notification todestchain to withdraw the reserve assets from this chain’s sovereign account and deposit them tobeneficiary.assetshave remote reserve: burn local assets, forward XCM to reserve chain to move reserves from this chain’s SA todestchain’s SA, and forward another XCM todestto mint and deposit reserve-based assets tobeneficiary.
This function is deprecated: Use limited_reserve_transfer_assets instead.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically be[Parent, Parachain(..)]to send from parachain to parachain, or[Parachain(..)]to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedest(and possibly reserve) chains.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Sourcepub fn execute(
    origin: OriginFor<T>,
    message: Box<VersionedXcm<<T as Config>::RuntimeCall>>,
    max_weight: Weight,
) -> DispatchResultWithPostInfo
 
pub fn execute( origin: OriginFor<T>, message: Box<VersionedXcm<<T as Config>::RuntimeCall>>, max_weight: Weight, ) -> DispatchResultWithPostInfo
Execute an XCM message from a local, signed, origin.
An event is deposited indicating whether msg could be executed completely or only
partially.
No more than max_weight will be used in its attempted execution. If this is less than
the maximum amount of weight that the message could take to be executed, then no
execution attempt will be made.
Sourcepub fn force_xcm_version(
    origin: OriginFor<T>,
    location: Box<Location>,
    version: XcmVersion,
) -> DispatchResult
 
pub fn force_xcm_version( origin: OriginFor<T>, location: Box<Location>, version: XcmVersion, ) -> DispatchResult
Extoll that a particular destination can be communicated with through a particular version of XCM.
origin: Must be an origin specified by AdminOrigin.location: The destination that is being described.xcm_version: The latest version of XCM thatlocationsupports.
Sourcepub fn force_default_xcm_version(
    origin: OriginFor<T>,
    maybe_xcm_version: Option<XcmVersion>,
) -> DispatchResult
 
pub fn force_default_xcm_version( origin: OriginFor<T>, maybe_xcm_version: Option<XcmVersion>, ) -> DispatchResult
Set a safe XCM version (the version that XCM should be encoded with if the most recent version a destination can accept is unknown).
origin: Must be an origin specified by AdminOrigin.maybe_xcm_version: The default XCM encoding version, orNoneto disable.
Sourcepub fn force_subscribe_version_notify(
    origin: OriginFor<T>,
    location: Box<VersionedLocation>,
) -> DispatchResult
 
pub fn force_subscribe_version_notify( origin: OriginFor<T>, location: Box<VersionedLocation>, ) -> DispatchResult
Ask a location to notify us regarding their XCM version and any changes to it.
origin: Must be an origin specified by AdminOrigin.location: The location to which we should subscribe for XCM version notifications.
Sourcepub fn force_unsubscribe_version_notify(
    origin: OriginFor<T>,
    location: Box<VersionedLocation>,
) -> DispatchResult
 
pub fn force_unsubscribe_version_notify( origin: OriginFor<T>, location: Box<VersionedLocation>, ) -> DispatchResult
Require that a particular destination should no longer notify us regarding any XCM version changes.
origin: Must be an origin specified by AdminOrigin.location: The location to which we are currently subscribed for XCM version notifications which we no longer desire.
Sourcepub fn limited_reserve_transfer_assets(
    origin: OriginFor<T>,
    dest: Box<VersionedLocation>,
    beneficiary: Box<VersionedLocation>,
    assets: Box<VersionedAssets>,
    fee_asset_item: u32,
    weight_limit: WeightLimit,
) -> DispatchResult
 
pub fn limited_reserve_transfer_assets( origin: OriginFor<T>, dest: Box<VersionedLocation>, beneficiary: Box<VersionedLocation>, assets: Box<VersionedAssets>, fee_asset_item: u32, weight_limit: WeightLimit, ) -> DispatchResult
Transfer some assets from the local chain to the destination chain through their local, destination or remote reserve.
assets must have same reserve location and may not be teleportable to dest.
assetshave local reserve: transfer assets to sovereign account of destination chain and forward a notification XCM todestto mint and deposit reserve-based assets tobeneficiary.assetshave destination reserve: burn local assets and forward a notification todestchain to withdraw the reserve assets from this chain’s sovereign account and deposit them tobeneficiary.assetshave remote reserve: burn local assets, forward XCM to reserve chain to move reserves from this chain’s SA todestchain’s SA, and forward another XCM todestto mint and deposit reserve-based assets tobeneficiary.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the sent assets may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically be[Parent, Parachain(..)]to send from parachain to parachain, or[Parachain(..)]to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedest(and possibly reserve) chains.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Sourcepub fn limited_teleport_assets(
    origin: OriginFor<T>,
    dest: Box<VersionedLocation>,
    beneficiary: Box<VersionedLocation>,
    assets: Box<VersionedAssets>,
    fee_asset_item: u32,
    weight_limit: WeightLimit,
) -> DispatchResult
 
pub fn limited_teleport_assets( origin: OriginFor<T>, dest: Box<VersionedLocation>, beneficiary: Box<VersionedLocation>, assets: Box<VersionedAssets>, fee_asset_item: u32, weight_limit: WeightLimit, ) -> DispatchResult
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the sent assets may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically be[Parent, Parachain(..)]to send from parachain to parachain, or[Parachain(..)]to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestchain.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Sourcepub fn force_suspension(origin: OriginFor<T>, suspended: bool) -> DispatchResult
 
pub fn force_suspension(origin: OriginFor<T>, suspended: bool) -> DispatchResult
Set or unset the global suspension state of the XCM executor.
origin: Must be an origin specified by AdminOrigin.suspended:trueto suspend,falseto resume.
Sourcepub fn transfer_assets(
    origin: OriginFor<T>,
    dest: Box<VersionedLocation>,
    beneficiary: Box<VersionedLocation>,
    assets: Box<VersionedAssets>,
    fee_asset_item: u32,
    weight_limit: WeightLimit,
) -> DispatchResult
 
pub fn transfer_assets( origin: OriginFor<T>, dest: Box<VersionedLocation>, beneficiary: Box<VersionedLocation>, assets: Box<VersionedAssets>, fee_asset_item: u32, weight_limit: WeightLimit, ) -> DispatchResult
Transfer some assets from the local chain to the destination chain through their local, destination or remote reserve, or through teleports.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item (hence referred to as fees), up to enough to pay for
weight_limit of weight. If more weight is needed than weight_limit, then the
operation will fail and the sent assets may be at risk.
assets (excluding fees) must have same reserve location or otherwise be teleportable
to dest, no limitations imposed on fees.
- 
for local reserve: transfer assets to sovereign account of destination chain and forward a notification XCM to
destto mint and deposit reserve-based assets tobeneficiary. - 
for destination reserve: burn local assets and forward a notification to
destchain to withdraw the reserve assets from this chain’s sovereign account and deposit them tobeneficiary. - 
for remote reserve: burn local assets, forward XCM to reserve chain to move reserves from this chain’s SA to
destchain’s SA, and forward another XCM todestto mint and deposit reserve-based assets tobeneficiary. - 
for teleports: burn local assets and forward XCM to
destchain to mint/teleport assets and deposit them tobeneficiary. - 
origin: Must be capable of withdrawing theassetsand executing XCM. - 
dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain. - 
beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value. - 
assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedest(and possibly reserve) chains. - 
fee_asset_item: The index intoassetsof the item which should be used to pay fees. - 
weight_limit: The remote-side weight limit, if any, for the XCM fee purchase. 
Sourcepub fn claim_assets(
    origin: OriginFor<T>,
    assets: Box<VersionedAssets>,
    beneficiary: Box<VersionedLocation>,
) -> DispatchResult
 
pub fn claim_assets( origin: OriginFor<T>, assets: Box<VersionedAssets>, beneficiary: Box<VersionedLocation>, ) -> DispatchResult
Claims assets trapped on this pallet because of leftover assets during XCM execution.
origin: Anyone can call this extrinsic.assets: The exact assets that were trapped. Use the version to specify what version was the latest when they were trapped.beneficiary: The location/account where the claimed assets will be deposited.
Sourcepub fn transfer_assets_using_type_and_then(
    origin: OriginFor<T>,
    dest: Box<VersionedLocation>,
    assets: Box<VersionedAssets>,
    assets_transfer_type: Box<TransferType>,
    remote_fees_id: Box<VersionedAssetId>,
    fees_transfer_type: Box<TransferType>,
    custom_xcm_on_dest: Box<VersionedXcm<()>>,
    weight_limit: WeightLimit,
) -> DispatchResult
 
pub fn transfer_assets_using_type_and_then( origin: OriginFor<T>, dest: Box<VersionedLocation>, assets: Box<VersionedAssets>, assets_transfer_type: Box<TransferType>, remote_fees_id: Box<VersionedAssetId>, fees_transfer_type: Box<TransferType>, custom_xcm_on_dest: Box<VersionedXcm<()>>, weight_limit: WeightLimit, ) -> DispatchResult
Transfer assets from the local chain to the destination chain using explicit transfer types for assets and fees.
assets must have same reserve location or may be teleportable to dest. Caller must
provide the assets_transfer_type to be used for assets:
TransferType::LocalReserve: transfer assets to sovereign account of destination chain and forward a notification XCM todestto mint and deposit reserve-based assets tobeneficiary.TransferType::DestinationReserve: burn local assets and forward a notification todestchain to withdraw the reserve assets from this chain’s sovereign account and deposit them tobeneficiary.TransferType::RemoteReserve(reserve): burn local assets, forward XCM toreservechain to move reserves from this chain’s SA todestchain’s SA, and forward another XCM todestto mint and deposit reserve-based assets tobeneficiary. Typically the remotereserveis Asset Hub.TransferType::Teleport: burn local assets and forward XCM todestchain to mint/teleport assets and deposit them tobeneficiary.
On the destination chain, as well as any intermediary hops, BuyExecution is used to
buy execution using transferred assets identified by remote_fees_id.
Make sure enough of the specified remote_fees_id asset is included in the given list
of assets. remote_fees_id should be enough to pay for weight_limit. If more weight
is needed than weight_limit, then the operation will fail and the sent assets may be
at risk.
remote_fees_id may use different transfer type than rest of assets and can be
specified through fees_transfer_type.
The caller needs to specify what should happen to the transferred assets once they reach
the dest chain. This is done through the custom_xcm_on_dest parameter, which
contains the instructions to execute on dest as a final step.
This is usually as simple as:
Xcm(vec![DepositAsset { assets: Wild(AllCounted(assets.len())), beneficiary }]),
but could be something more exotic like sending the assets even further.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically be[Parent, Parachain(..)]to send from parachain to parachain, or[Parachain(..)]to send from relay to parachain, or(parents: 2, (GlobalConsensus(..), ..))to send from parachain across a bridge to another ecosystem destination.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedest(and possibly reserve) chains.assets_transfer_type: The XCMTransferTypeused to transfer theassets.remote_fees_id: One of the includedassetsto be used to pay fees.fees_transfer_type: The XCMTransferTypeused to transfer thefeesassets.custom_xcm_on_dest: The XCM to be executed ondestchain as the last step of the transfer, which also determines what happens to the assets on the destination chain.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Authorize another aliaser location to alias into the local origin making this call.
The aliaser is only authorized until the provided expiry block number.
The call can also be used for a previously authorized alias in order to update its
expiry block number.
Usually useful to allow your local account to be aliased into from a remote location also under your control (like your account on another chain).
WARNING: make sure the caller origin (you) trusts the aliaser location to act in
their/your name. Once authorized using this call, the aliaser can freely impersonate
origin in XCM programs executed on the local chain.
Remove a previously authorized aliaser from the list of locations that can alias into
the local origin making this call.
Remove all previously authorized aliasers that can alias into the local origin
making this call.
Source§impl<T: Config> Pallet<T>
 
impl<T: Config> Pallet<T>
Sourcepub fn query(query_id: &QueryId) -> Option<QueryStatus<BlockNumberFor<T>>>
 
pub fn query(query_id: &QueryId) -> Option<QueryStatus<BlockNumberFor<T>>>
The ongoing queries.
Sourcepub fn asset_trap(trap_id: &H256) -> u32
 
pub fn asset_trap(trap_id: &H256) -> u32
The existing asset traps.
Key is the blake2 256 hash of (origin, versioned Assets) pair.
Value is the number of times this pair has been trapped
(usually just 1 if it exists at all).
Sourcepub fn request_version_notify(dest: impl Into<Location>) -> XcmResult
 
pub fn request_version_notify(dest: impl Into<Location>) -> XcmResult
Request that dest informs us of its version.
Sourcepub fn unrequest_version_notify(dest: impl Into<Location>) -> XcmResult
 
pub fn unrequest_version_notify(dest: impl Into<Location>) -> XcmResult
Request that dest ceases informing us of its version.
Sourcepub fn send_xcm(
    interior: impl Into<Junctions>,
    dest: impl Into<Location>,
    message: Xcm<()>,
) -> Result<XcmHash, SendError>
 
pub fn send_xcm( interior: impl Into<Junctions>, dest: impl Into<Location>, message: Xcm<()>, ) -> Result<XcmHash, SendError>
Relay an XCM message from a given interior location in this context to a given dest
location. The fee_payer is charged for the delivery unless None in which case fees
are not charged (and instead borne by the chain).
pub fn check_account() -> T::AccountId
Sourcepub fn dry_run_call<Runtime, Router, OriginCaller, RuntimeCall>(
    origin: OriginCaller,
    call: RuntimeCall,
    result_xcms_version: XcmVersion,
) -> Result<CallDryRunEffects<<Runtime as Config>::RuntimeEvent>, XcmDryRunApiError>
 
pub fn dry_run_call<Runtime, Router, OriginCaller, RuntimeCall>( origin: OriginCaller, call: RuntimeCall, result_xcms_version: XcmVersion, ) -> Result<CallDryRunEffects<<Runtime as Config>::RuntimeEvent>, XcmDryRunApiError>
Dry-runs call with the given origin.
Returns not only the call result and events, but also the local XCM, if any,
and any XCMs forwarded to other locations.
Meant to be used in the xcm_runtime_apis::dry_run::DryRunApi runtime API.
Sourcepub fn dry_run_xcm<Runtime, Router, RuntimeCall: Decode + GetDispatchInfo, XcmConfig>(
    origin_location: VersionedLocation,
    xcm: VersionedXcm<RuntimeCall>,
) -> Result<XcmDryRunEffects<<Runtime as Config>::RuntimeEvent>, XcmDryRunApiError>where
    Runtime: Config,
    Router: InspectMessageQueues,
    XcmConfig: Config<RuntimeCall = RuntimeCall>,
 
pub fn dry_run_xcm<Runtime, Router, RuntimeCall: Decode + GetDispatchInfo, XcmConfig>(
    origin_location: VersionedLocation,
    xcm: VersionedXcm<RuntimeCall>,
) -> Result<XcmDryRunEffects<<Runtime as Config>::RuntimeEvent>, XcmDryRunApiError>where
    Runtime: Config,
    Router: InspectMessageQueues,
    XcmConfig: Config<RuntimeCall = RuntimeCall>,
Dry-runs xcm with the given origin_location.
Returns execution result, events, and any forwarded XCMs to other locations.
Meant to be used in the xcm_runtime_apis::dry_run::DryRunApi runtime API.
Sourcepub fn query_acceptable_payment_assets(
    version: Version,
    asset_ids: Vec<AssetId>,
) -> Result<Vec<VersionedAssetId>, XcmPaymentApiError>
 
pub fn query_acceptable_payment_assets( version: Version, asset_ids: Vec<AssetId>, ) -> Result<Vec<VersionedAssetId>, XcmPaymentApiError>
Given a list of asset ids, returns the correct API response for
XcmPaymentApi::query_acceptable_payment_assets.
The assets passed in have to be supported for fee payment.
pub fn query_xcm_weight( message: VersionedXcm<()>, ) -> Result<Weight, XcmPaymentApiError>
Sourcepub fn query_weight_to_asset_fee<Trader: WeightTrader>(
    weight: Weight,
    asset: VersionedAssetId,
) -> Result<u128, XcmPaymentApiError>
 
pub fn query_weight_to_asset_fee<Trader: WeightTrader>( weight: Weight, asset: VersionedAssetId, ) -> Result<u128, XcmPaymentApiError>
Computes the weight cost using the provided WeightTrader.
This function is supposed to be used ONLY in XcmPaymentApi::query_weight_to_asset_fee.
The provided WeightTrader must be the same as the one used in the XcmExecutor to ensure
uniformity in the weight cost calculation.
NOTE: Currently this function uses a workaround that should be good enough for all practical
uses: passes u128::MAX / 2 == 2^127 of the specified asset to the WeightTrader as
payment and computes the weight cost as the difference between this and the unspent amount.
Some weight traders could add the provided payment to some account’s balance. However,
it should practically never result in overflow because even currencies with a lot of decimal
digits (say 18) usually have the total issuance of billions (x * 10^9) or trillions (x * 10^12) at max, much less than 2^127 / 10^18 =~ 1.7 * 10^20 (170 billion billion). Thus,
any account’s balance most likely holds less than 2^127, so adding 2^127 won’t result in
u128 overflow.
Sourcepub fn query_delivery_fees(
    destination: VersionedLocation,
    message: VersionedXcm<()>,
) -> Result<VersionedAssets, XcmPaymentApiError>
 
pub fn query_delivery_fees( destination: VersionedLocation, message: VersionedXcm<()>, ) -> Result<VersionedAssets, XcmPaymentApiError>
Given a destination and XCM message, return assets to be charged as XCM delivery fees.
Sourcepub fn is_trusted_reserve(
    asset: VersionedAsset,
    location: VersionedLocation,
) -> Result<bool, TrustedQueryApiError>
 
pub fn is_trusted_reserve( asset: VersionedAsset, location: VersionedLocation, ) -> Result<bool, TrustedQueryApiError>
Given an Asset and a Location, returns if the provided location is a trusted reserve for the given asset.
Sourcepub fn is_trusted_teleporter(
    asset: VersionedAsset,
    location: VersionedLocation,
) -> Result<bool, TrustedQueryApiError>
 
pub fn is_trusted_teleporter( asset: VersionedAsset, location: VersionedLocation, ) -> Result<bool, TrustedQueryApiError>
Given an Asset and a Location, returns if the asset can be teleported to provided location.
Returns locations allowed to alias into and act as target.
Given an origin and a target, returns if the origin location was added by target as
an authorized aliaser.
Effectively says whether origin is allowed to alias into and act as target.
Sourcepub fn report_outcome_notify(
    message: &mut Xcm<()>,
    responder: impl Into<Location>,
    notify: impl Into<<T as Config>::RuntimeCall>,
    timeout: BlockNumberFor<T>,
) -> Result<(), XcmError>
 
pub fn report_outcome_notify( message: &mut Xcm<()>, responder: impl Into<Location>, notify: impl Into<<T as Config>::RuntimeCall>, timeout: BlockNumberFor<T>, ) -> Result<(), XcmError>
Consume message and return another which is equivalent to it except that it reports
back the outcome and dispatches notify on this chain.
message: The message whose outcome should be reported.responder: The origin from which a response should be expected.notify: A dispatchable function which will be called once the outcome ofmessageis known. It may be a dispatchable in any pallet of the local chain, but other than the usual origin, it must accept exactly two arguments:query_id: QueryIdandoutcome: Response, and in that order. It should expect that the origin isOrigin::Responseand will contain the responder’s location.timeout: The block number after which it is permissible fornotifynot to be called even if a response is received.
report_outcome_notify may return an error if the responder is not invertible.
It is assumed that the querier of the response will be Here.
NOTE: notify gets called as part of handling an incoming message, so it should be
lightweight. Its weight is estimated during this function and stored ready for
weighing ReportOutcome on the way back. If it turns out to be heavier once it returns
then reporting the outcome will fail. Furthermore if the estimate is too high, then it
may be put in the overweight queue and need to be manually executed.
Sourcepub fn new_notify_query(
    responder: impl Into<Location>,
    notify: impl Into<<T as Config>::RuntimeCall>,
    timeout: BlockNumberFor<T>,
    match_querier: impl Into<Location>,
) -> u64
 
pub fn new_notify_query( responder: impl Into<Location>, notify: impl Into<<T as Config>::RuntimeCall>, timeout: BlockNumberFor<T>, match_querier: impl Into<Location>, ) -> u64
Attempt to create a new query ID and register it as a query that is yet to respond, and which will call a dispatchable when a response happens.
Sourcepub fn do_try_state() -> Result<(), TryRuntimeError>
 
pub fn do_try_state() -> Result<(), TryRuntimeError>
Ensure the correctness of the state of this pallet.
This should be valid before and after each state transition of this pallet.
§Invariants
All entries stored in the SupportedVersion / VersionNotifiers / VersionNotifyTargets
need to be migrated to the XCM_VERSION. If they are not, then CurrentMigration has to be
set.
Trait Implementations§
Source§impl<T: Config> AssetLock for Pallet<T>
 
impl<T: Config> AssetLock for Pallet<T>
Source§type LockTicket = LockTicket<T>
 
type LockTicket = LockTicket<T>
Enact implementer for prepare_lock. This type may be dropped safely to avoid doing the
lock.Source§type UnlockTicket = UnlockTicket<T>
 
type UnlockTicket = UnlockTicket<T>
Enact implementer for prepare_unlock. This type may be dropped safely to avoid doing the
unlock.Source§type ReduceTicket = ReduceTicket<T>
 
type ReduceTicket = ReduceTicket<T>
Enact implementer for prepare_reduce_unlockable. This type may be dropped safely to
avoid doing the unlock.Source§fn prepare_lock(
    unlocker: Location,
    asset: Asset,
    owner: Location,
) -> Result<LockTicket<T>, LockError>
 
fn prepare_lock( unlocker: Location, asset: Asset, owner: Location, ) -> Result<LockTicket<T>, LockError>
Self::LockTicket it returned, which can be used
to actually enact the lock. Read moreSource§fn prepare_unlock(
    unlocker: Location,
    asset: Asset,
    owner: Location,
) -> Result<UnlockTicket<T>, LockError>
 
fn prepare_unlock( unlocker: Location, asset: Asset, owner: Location, ) -> Result<UnlockTicket<T>, LockError>
Self::UnlockTicket it returned, which can be
used to actually enact the lock. Read moreSource§impl<T: Config> BeforeAllRuntimeMigrations for Pallet<T>
 
impl<T: Config> BeforeAllRuntimeMigrations for Pallet<T>
Source§fn before_all_runtime_migrations() -> Weight
 
fn before_all_runtime_migrations() -> Weight
Source§impl<T: Config> CheckSuspension for Pallet<T>
 
impl<T: Config> CheckSuspension for Pallet<T>
fn is_suspended<Call>( _origin: &Location, _instructions: &mut [Instruction<Call>], _max_weight: Weight, _properties: &mut Properties, ) -> bool
Source§impl<T: Config> ClaimAssets for Pallet<T>
 
impl<T: Config> ClaimAssets for Pallet<T>
Source§fn claim_assets(
    origin: &Location,
    ticket: &Location,
    assets: &Assets,
    _context: &XcmContext,
) -> bool
 
fn claim_assets( origin: &Location, ticket: &Location, assets: &Assets, _context: &XcmContext, ) -> bool
origin and return them in a single Assets value, together
with the weight used by this operation.Source§impl<T: Config> DropAssets for Pallet<T>
 
impl<T: Config> DropAssets for Pallet<T>
Source§fn drop_assets(
    origin: &Location,
    assets: AssetsInHolding,
    _context: &XcmContext,
) -> Weight
 
fn drop_assets( origin: &Location, assets: AssetsInHolding, _context: &XcmContext, ) -> Weight
Source§impl<T: Config> EventEmitter for Pallet<T>
 
impl<T: Config> EventEmitter for Pallet<T>
Source§fn emit_sent_event(
    origin: Location,
    destination: Location,
    message: Option<Xcm<()>>,
    message_id: XcmHash,
)
 
fn emit_sent_event( origin: Location, destination: Location, message: Option<Xcm<()>>, message_id: XcmHash, )
Source§impl<T: Config> ExecuteController<<T as Config>::RuntimeOrigin, <T as Config>::RuntimeCall> for Pallet<T>
 
impl<T: Config> ExecuteController<<T as Config>::RuntimeOrigin, <T as Config>::RuntimeCall> for Pallet<T>
Source§type WeightInfo = Pallet<T>
 
type WeightInfo = Pallet<T>
Source§fn execute(
    origin: OriginFor<T>,
    message: Box<VersionedXcm<<T as Config>::RuntimeCall>>,
    max_weight: Weight,
) -> Result<Weight, DispatchErrorWithPostInfo>
 
fn execute( origin: OriginFor<T>, message: Box<VersionedXcm<<T as Config>::RuntimeCall>>, max_weight: Weight, ) -> Result<Weight, DispatchErrorWithPostInfo>
Source§impl<T: Config> GetStorageVersion for Pallet<T>
 
impl<T: Config> GetStorageVersion for Pallet<T>
Source§type InCodeStorageVersion = StorageVersion
 
type InCodeStorageVersion = StorageVersion
Source§fn in_code_storage_version() -> Self::InCodeStorageVersion
 
fn in_code_storage_version() -> Self::InCodeStorageVersion
storage_version attribute, or
[NoStorageVersionSet] if the attribute is missing.Source§fn on_chain_storage_version() -> StorageVersion
 
fn on_chain_storage_version() -> StorageVersion
§fn current_storage_version() -> Self::InCodeStorageVersion
 
fn current_storage_version() -> Self::InCodeStorageVersion
in_code_storage_version and will be removed after March 2024.Self::current_storage_version] instead. Read moreSource§impl<T: Config> GetVersion for Pallet<T>
 
impl<T: Config> GetVersion for Pallet<T>
fn get_version_for(dest: &Location) -> Option<XcmVersion>
Source§impl<T: Config> Hooks<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> Hooks<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn on_initialize(_n: BlockNumberFor<T>) -> Weight
 
fn on_initialize(_n: BlockNumberFor<T>) -> Weight
Source§fn try_state(_n: BlockNumberFor<T>) -> Result<(), TryRuntimeError>
 
fn try_state(_n: BlockNumberFor<T>) -> Result<(), TryRuntimeError>
§fn on_finalize(_n: BlockNumber)
 
fn on_finalize(_n: BlockNumber)
§fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
 
fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
Hooks::on_finalize]). Read more§fn on_poll(_n: BlockNumber, _weight: &mut WeightMeter)
 
fn on_poll(_n: BlockNumber, _weight: &mut WeightMeter)
§fn on_runtime_upgrade() -> Weight
 
fn on_runtime_upgrade() -> Weight
Executive pallet. Read more§fn pre_upgrade() -> Result<Vec<u8>, DispatchError>
 
fn pre_upgrade() -> Result<Vec<u8>, DispatchError>
§fn post_upgrade(_state: Vec<u8>) -> Result<(), DispatchError>
 
fn post_upgrade(_state: Vec<u8>) -> Result<(), DispatchError>
§fn offchain_worker(_n: BlockNumber)
 
fn offchain_worker(_n: BlockNumber)
§fn integrity_test()
 
fn integrity_test()
Source§impl<T: Config> IntegrityTest for Pallet<T>
 
impl<T: Config> IntegrityTest for Pallet<T>
Source§fn integrity_test()
 
fn integrity_test()
Hooks::integrity_test].Source§impl<T: Config> OffchainWorker<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> OffchainWorker<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn offchain_worker(n: BlockNumberFor<T>)
 
fn offchain_worker(n: BlockNumberFor<T>)
Source§impl<T: Config> OnFinalize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> OnFinalize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn on_finalize(n: BlockNumberFor<T>)
 
fn on_finalize(n: BlockNumberFor<T>)
Hooks::on_finalize].Source§impl<T: Config> OnGenesis for Pallet<T>
 
impl<T: Config> OnGenesis for Pallet<T>
Source§fn on_genesis()
 
fn on_genesis()
Source§impl<T: Config> OnIdle<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> OnIdle<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn on_idle(n: BlockNumberFor<T>, remaining_weight: Weight) -> Weight
 
fn on_idle(n: BlockNumberFor<T>, remaining_weight: Weight) -> Weight
Hooks::on_idle].Source§impl<T: Config> OnInitialize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> OnInitialize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn on_initialize(n: BlockNumberFor<T>) -> Weight
 
fn on_initialize(n: BlockNumberFor<T>) -> Weight
Hooks::on_initialize].Source§impl<T: Config> OnPoll<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> OnPoll<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn on_poll(n: BlockNumberFor<T>, weight: &mut WeightMeter)
 
fn on_poll(n: BlockNumberFor<T>, weight: &mut WeightMeter)
Source§impl<T: Config> OnResponse for Pallet<T>
 
impl<T: Config> OnResponse for Pallet<T>
Source§fn expecting_response(
    origin: &Location,
    query_id: QueryId,
    querier: Option<&Location>,
) -> bool
 
fn expecting_response( origin: &Location, query_id: QueryId, querier: Option<&Location>, ) -> bool
true if we are expecting a response from origin for query query_id that was
queried by querier.Source§fn on_response(
    origin: &Location,
    query_id: QueryId,
    querier: Option<&Location>,
    response: Response,
    max_weight: Weight,
    _context: &XcmContext,
) -> Weight
 
fn on_response( origin: &Location, query_id: QueryId, querier: Option<&Location>, response: Response, max_weight: Weight, _context: &XcmContext, ) -> Weight
response from origin relating to query_id initiated by
querier.Source§impl<T: Config> OnRuntimeUpgrade for Pallet<T>
 
impl<T: Config> OnRuntimeUpgrade for Pallet<T>
Source§fn on_runtime_upgrade() -> Weight
 
fn on_runtime_upgrade() -> Weight
Hooks::on_runtime_upgrade].§fn try_on_runtime_upgrade(checks: bool) -> Result<Weight, DispatchError>
 
fn try_on_runtime_upgrade(checks: bool) -> Result<Weight, DispatchError>
pre_upgrade ->
on_runtime_upgrade -> post_upgrade hooks for a migration. Read moreSource§impl<T: Config> PalletInfoAccess for Pallet<T>
 
impl<T: Config> PalletInfoAccess for Pallet<T>
Source§fn module_name() -> &'static str
 
fn module_name() -> &'static str
Source§fn crate_version() -> CrateVersion
 
fn crate_version() -> CrateVersion
Source§impl<T: Config> QueryController<<T as Config>::RuntimeOrigin, <<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> QueryController<<T as Config>::RuntimeOrigin, <<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§type WeightInfo = Pallet<T>
 
type WeightInfo = Pallet<T>
Source§fn query(
    origin: OriginFor<T>,
    timeout: BlockNumberFor<T>,
    match_querier: VersionedLocation,
) -> Result<QueryId, DispatchError>
 
fn query( origin: OriginFor<T>, timeout: BlockNumberFor<T>, match_querier: VersionedLocation, ) -> Result<QueryId, DispatchError>
Source§impl<T: Config> QueryHandler for Pallet<T>
 
impl<T: Config> QueryHandler for Pallet<T>
Source§fn new_query(
    responder: impl Into<Location>,
    timeout: BlockNumberFor<T>,
    match_querier: impl Into<Location>,
) -> QueryId
 
fn new_query( responder: impl Into<Location>, timeout: BlockNumberFor<T>, match_querier: impl Into<Location>, ) -> QueryId
Attempt to create a new query ID and register it as a query that is yet to respond.
Source§fn report_outcome(
    message: &mut Xcm<()>,
    responder: impl Into<Location>,
    timeout: Self::BlockNumber,
) -> Result<QueryId, Self::Error>
 
fn report_outcome( message: &mut Xcm<()>, responder: impl Into<Location>, timeout: Self::BlockNumber, ) -> Result<QueryId, Self::Error>
To check the status of the query, use fn query() passing the resultant QueryId
value.
Source§fn take_response(query_id: QueryId) -> QueryResponseStatus<Self::BlockNumber>
 
fn take_response(query_id: QueryId) -> QueryResponseStatus<Self::BlockNumber>
Removes response when ready and emits Event::ResponseTaken event.
type BlockNumber = <<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number
type Error = Error
type UniversalLocation = <T as Config>::UniversalLocation
Source§fn expect_response(id: QueryId, response: Response)
 
fn expect_response(id: QueryId, response: Response)
Source§impl<T: Config> RecordXcm for Pallet<T>
 
impl<T: Config> RecordXcm for Pallet<T>
Source§fn should_record() -> bool
 
fn should_record() -> bool
Source§fn set_record_xcm(enabled: bool)
 
fn set_record_xcm(enabled: bool)
Source§impl<T: Config> TryState<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
 
impl<T: Config> TryState<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§impl<T: Config> VersionChangeNotifier for Pallet<T>
 
impl<T: Config> VersionChangeNotifier for Pallet<T>
Source§fn start(
    dest: &Location,
    query_id: QueryId,
    max_weight: Weight,
    _context: &XcmContext,
) -> XcmResult
 
fn start( dest: &Location, query_id: QueryId, max_weight: Weight, _context: &XcmContext, ) -> XcmResult
Start notifying location should the XCM version of this chain change.
When it does, this type should ensure a QueryResponse message is sent with the given
query_id & max_weight and with a response of Response::Version. This should happen
until/unless stop is called with the correct query_id.
If the location has an ongoing notification and when this function is called, then an
error should be returned.
Source§fn stop(dest: &Location, _context: &XcmContext) -> XcmResult
 
fn stop(dest: &Location, _context: &XcmContext) -> XcmResult
Stop notifying location should the XCM change. This is a no-op if there was never a
subscription.
Source§fn is_subscribed(dest: &Location) -> bool
 
fn is_subscribed(dest: &Location) -> bool
Return true if a location is subscribed to XCM version changes.
Source§impl<T: Config> WhitelistedStorageKeys for Pallet<T>
 
impl<T: Config> WhitelistedStorageKeys for Pallet<T>
Source§fn whitelisted_storage_keys() -> Vec<TrackedStorageKey>
 
fn whitelisted_storage_keys() -> Vec<TrackedStorageKey>
Vec<TrackedStorageKey> indicating the storage keys that
should be whitelisted during benchmarking. This means that those keys
will be excluded from the benchmarking performance calculation.Source§impl<T: Config> WrapVersion for Pallet<T>
 
impl<T: Config> WrapVersion for Pallet<T>
fn wrap_version<RuntimeCall: Decode + GetDispatchInfo>( dest: &Location, xcm: impl Into<VersionedXcm<RuntimeCall>>, ) -> Result<VersionedXcm<RuntimeCall>, ()>
impl<T> Eq for Pallet<T>
Auto Trait Implementations§
impl<T> Freeze for Pallet<T>
impl<T> RefUnwindSafe for Pallet<T>where
    T: RefUnwindSafe,
impl<T> Send for Pallet<T>where
    T: Send,
impl<T> Sync for Pallet<T>where
    T: Sync,
impl<T> Unpin for Pallet<T>where
    T: Unpin,
impl<T> UnwindSafe for Pallet<T>where
    T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
§impl<T> CheckedConversion for T
 
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
    Self: TryFrom<T>,
 
fn checked_from<T>(t: T) -> Option<Self>where
    Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
    Self: TryInto<T>,
 
fn checked_into<T>(self) -> Option<T>where
    Self: TryInto<T>,
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<T> Conv for T
 
impl<T> Conv for T
§impl<T, U> DefensiveTruncateInto<U> for Twhere
    U: DefensiveTruncateFrom<T>,
 
impl<T, U> DefensiveTruncateInto<U> for Twhere
    U: DefensiveTruncateFrom<T>,
§fn defensive_truncate_into(self) -> U
 
fn defensive_truncate_into(self) -> U
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
§impl<T> FmtForward for T
 
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
    Self: Binary,
 
fn fmt_binary(self) -> FmtBinary<Self>where
    Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
    Self: Display,
 
fn fmt_display(self) -> FmtDisplay<Self>where
    Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
    Self: LowerExp,
 
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
    Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
    Self: LowerHex,
 
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
    Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
    Self: Octal,
 
fn fmt_octal(self) -> FmtOctal<Self>where
    Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
    Self: Pointer,
 
fn fmt_pointer(self) -> FmtPointer<Self>where
    Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
    Self: UpperExp,
 
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
    Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
    Self: UpperHex,
 
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
    Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
    &'a Self: for<'a> IntoIterator,
 
fn fmt_list(self) -> FmtList<Self>where
    &'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<Src, Dest> IntoTuple<Dest> for Srcwhere
    Dest: FromTuple<Src>,
 
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
    Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
§impl<T> IsType<T> for T
 
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
 
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pipe for Twhere
    T: ?Sized,
 
impl<T> Pipe for Twhere
    T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
    Self: Sized,
 
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
    Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
    R: 'a,
 
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
    R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
    R: 'a,
 
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
    R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
 
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
    &'a mut self,
    func: impl FnOnce(&'a mut B) -> R,
) -> R
 
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
 
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
 
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
 
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
 
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
 
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
    Self: UniqueSaturatedFrom<T>,
 
fn saturated_from<T>(t: T) -> Selfwhere
    Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
    Self: UniqueSaturatedInto<T>,
 
fn saturated_into<T>(self) -> Twhere
    Self: UniqueSaturatedInto<T>,
T. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
    SS: SubsetOf<SP>,
 
impl<SS, SP> SupersetOf<SS> for SPwhere
    SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
 
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
 
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
 
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
 
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.§impl<T> Tap for T
 
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
 
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
 
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
 
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
 
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
 
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
 
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
 
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
 
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
 
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
 
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
 
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
 
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
 
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
 
impl<T> TryConv for T
§impl<T, U> TryIntoKey<U> for Twhere
    U: TryFromKey<T>,
 
impl<T, U> TryIntoKey<U> for Twhere
    U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
§impl<S, T> UncheckedInto<T> for Swhere
    T: UncheckedFrom<S>,
 
impl<S, T> UncheckedInto<T> for Swhere
    T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
 
fn unchecked_into(self) -> T
unchecked_from.§impl<T, S> UniqueSaturatedInto<T> for S
 
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
 
fn unique_saturated_into(self) -> T
T.