logo
pub trait OpenButtonParent: Model where
    Self::Widgets: ParentWindow
{ fn open_msg(path: PathBuf) -> Self::Msg; }
Expand description

Interface for the parent model of the open button component

Required methods

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

Implementors