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

Interface for the parent model

Required Methods§

source

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

Tell the open dialog how to response if the user wants to open a file

Implementors§