logo
pub trait AlertParent: Model where
    Self::Widgets: ParentWindow
{ fn confirm_msg() -> Self::Msg; fn cancel_msg() -> Self::Msg; fn option_msg() -> Self::Msg; }
Expand description

Interface for the parent model

Required methods

Message sent to parent if user clicks confirm button

Message sent to parent if user clicks cancel button

Message sent to parent if user clicks third option button

Implementors