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

Interface for the parent model of the open button component

Required Methods§

source

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

Returns the message the button will send to the parent with the file path the user wants to open.

Implementors§