logo
pub trait SaveDialogConfig {
    type Model: Model;
    fn dialog_config(model: &Self::Model) -> SaveDialogSettings;
}
Expand description

Interface for building the configuration for SaveDialog

Associated Types

Model from which configuration should be built

Required methods

Configure the save dialog

Implementors