Trait MediumHookPostCommand

Source
pub trait MediumHookPostCommand {
    // Required method
    fn call(command_id: CommandId, flag: i32);
}
Expand description

Consumers need to implement this trait in order to get notified after an action of the main section has run.

Required Methods§

Source

fn call(command_id: CommandId, flag: i32)

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.

Implementors§