pub trait DmpMessageHandler {
// 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§
Object Safety§
This trait is not object safe.