pub trait DmpMessageHandler {
// Required method
fn handle_dmp_messages(
iter: impl Iterator<Item = (u32, Vec<u8, Global>)>,
max_weight: Weight
) -> Weight;
}
Expand description
Something that should be called when a downward message is received.