Trait Dialog
native_dialog
pub trait Dialog { type Output; fn show(self) -> Result<Self::Output>; }
type Output
fn show(self) -> Result<Self::Output>
impl<'_> Dialog for MessageAlert<'_>
type Output = ()
impl<'_> Dialog for MessageConfirm<'_>
type Output = bool
impl<'_> Dialog for OpenMultipleFile<'_>
type Output = Vec<String>
impl<'_> Dialog for OpenSingleDir<'_>
type Output = Option<String>
impl<'_> Dialog for OpenSingleFile<'_>