pub trait DispatchAlertDescription {
// Required method
fn create_alert_description(
&self,
dispatch_type: AlertDispatchType,
) -> String;
}Required Methods§
fn create_alert_description(&self, dispatch_type: AlertDispatchType) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".