Trait staging_xcm::WrapVersion
source · pub trait WrapVersion {
// Required method
fn wrap_version<RuntimeCall: Decode + GetDispatchInfo>(
dest: &Location,
xcm: impl Into<VersionedXcm<RuntimeCall>>,
) -> Result<VersionedXcm<RuntimeCall>, ()>;
}
Expand description
Convert an Xcm
datum into a VersionedXcm
, based on a destination Location
which will
interpret it.
Required Methods§
fn wrap_version<RuntimeCall: Decode + GetDispatchInfo>( dest: &Location, xcm: impl Into<VersionedXcm<RuntimeCall>>, ) -> Result<VersionedXcm<RuntimeCall>, ()>
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
source§impl WrapVersion for ()
impl WrapVersion for ()
()
implementation does nothing with the XCM, just sending with whatever version it was
authored as.