pub trait DmpMessageHandlerT {
// Required method
fn handle_dmp_messages(
iter: impl Iterator<Item = (u32, Vec<u8>)>,
max_weight: Weight,
) -> Weight;
}Expand description
Something that should be called when a downward message is received.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".