pub trait ConvertMessage {
// Required method
fn convert(message: Message) -> Result<Xcm<()>, ConvertMessageError>;
}
Expand description
Converts an inbound message from Ethereum to an XCM message that can be executed on a parachain.
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.