pub trait SendToRelay {
type AccountId;
// Required method
fn send(message: MessageToRelay<Self::AccountId>) -> Result<(), ()>;
}Expand description
Used to send an XCM Transact to the registrar pallet on the remote relay chain.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl SendToRelay for ()
Available on crate feature std only.
impl SendToRelay for ()
Available on crate feature
std only.