pub trait SaveDialogParent: Modelwhere
    Self::Widgets: ParentWindow,{
    // Required method
    fn save_msg(path: PathBuf) -> Self::Msg;
}
Expand description

Interface for the parent model of the save dialog

Required Methods§

source

fn save_msg(path: PathBuf) -> Self::Msg

Tell the save dialog how to response if the user wants to save

Implementors§