pub trait SaveDialogConfig {
    type Model: Model;

    // Required method
    fn dialog_config(model: &Self::Model) -> SaveDialogSettings;
}
Expand description

Interface for building the configuration for SaveDialog

Required Associated Types§

source

type Model: Model

Model from which configuration should be built

Required Methods§

source

fn dialog_config(model: &Self::Model) -> SaveDialogSettings

Configure the save dialog

Implementors§