pub trait ExecutionCallbacks:
Debug
+ Send
+ Sync
+ 'static {
// Provided method
fn on_operation(&self, _args: OperationCallbackArgs) { ... }
}Provided Methods§
fn on_operation(&self, _args: OperationCallbackArgs)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".