pub trait HandleHrmpNewChannelOpenRequest {
// Required method
fn handle(
sender: u32,
max_message_size: u32,
max_capacity: u32,
) -> XcmResult;
}
Expand description
Executes logic when a HrmpNewChannelOpenRequest
XCM notification is received.
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.