logo
pub trait AlertConfig {
    type Model: Model;
    fn alert_config(model: &Self::Model) -> AlertSettings;
}
Expand description

Interface for creating AlertSettings

Associated Types

Model from which AlertSettings will be built

Required methods

Configuration for alert component.

Implementors