Struct relm4_components::alert::AlertModel
source · [−]pub struct AlertModel<Conf: AlertConfig> { /* private fields */ }
Expand description
Model of the alert dialog component
Trait Implementations
sourceimpl<ParentModel, Conf> ComponentUpdate<ParentModel> for AlertModel<Conf> where
ParentModel: AlertParent,
ParentModel::Widgets: ParentWindow,
Conf: AlertConfig<Model = ParentModel>,
impl<ParentModel, Conf> ComponentUpdate<ParentModel> for AlertModel<Conf> where
ParentModel: AlertParent,
ParentModel::Widgets: ParentWindow,
Conf: AlertConfig<Model = ParentModel>,
sourcefn init_model(parent_model: &ParentModel) -> Self
fn init_model(parent_model: &ParentModel) -> Self
Initialize the model of the component or worker. Read more
sourceimpl<C: AlertConfig> Model for AlertModel<C>
impl<C: AlertConfig> Model for AlertModel<C>
type Widgets = AlertWidgets
type Widgets = AlertWidgets
The widgets type that can initialize and update the GUI with the data the model provides. Read more
type Components = ()
type Components = ()
The components type that initializes the child components of this model. Read more
sourceimpl<ParentModel, Conf> Widgets<AlertModel<Conf>, ParentModel> for AlertWidgets where
ParentModel: AlertParent,
ParentModel::Widgets: ParentWindow,
Conf: AlertConfig,
impl<ParentModel, Conf> Widgets<AlertModel<Conf>, ParentModel> for AlertWidgets where
ParentModel: AlertParent,
ParentModel::Widgets: ParentWindow,
Conf: AlertConfig,
sourcefn init_view(
model: &AlertModel<Conf>,
components: &<AlertModel<Conf> as Model>::Components,
sender: Sender<<AlertModel<Conf> as Model>::Msg>
) -> Self
fn init_view(
model: &AlertModel<Conf>,
components: &<AlertModel<Conf> as Model>::Components,
sender: Sender<<AlertModel<Conf> as Model>::Msg>
) -> Self
Initialize the UI.
sourcefn root_widget(&self) -> Self::Root
fn root_widget(&self) -> Self::Root
Return the root widget.
sourcefn view(
&mut self,
model: &AlertModel<Conf>,
sender: Sender<<AlertModel<Conf> as Model>::Msg>
)
fn view(
&mut self,
model: &AlertModel<Conf>,
sender: Sender<<AlertModel<Conf> as Model>::Msg>
)
Update the view to represent the updated model.
type Root = MessageDialog
type Root = MessageDialog
The root represents the first widget that all other widgets of this app or component are attached to.
The root of the main app must be a [gtk::ApplicationWindow
]. Read more
sourcefn connect_parent(&mut self, parent_widgets: &<ParentModel as Model>::Widgets)
fn connect_parent(&mut self, parent_widgets: &<ParentModel as Model>::Widgets)
Optional method to initialize components. This is only useful if you want to attach the widgets of a component to the widgets of this model. Read more
Auto Trait Implementations
impl<Conf> RefUnwindSafe for AlertModel<Conf> where
Conf: RefUnwindSafe,
impl<Conf> !Send for AlertModel<Conf>
impl<Conf> !Sync for AlertModel<Conf>
impl<Conf> Unpin for AlertModel<Conf>
impl<Conf> UnwindSafe for AlertModel<Conf> where
Conf: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more