logo
pub trait OpenDialogConfig {
    type Model: Model;
    fn open_dialog_config(model: &Self::Model) -> OpenDialogSettings;
}
Expand description

Interface for creating OpenDialogSettings

Associated Types

Model from which OpenDialogSettings will be built

Required methods

Builds configuration for OpenDialog

Implementors