[][src]Trait native_dialog::Dialog

pub trait Dialog {
    type Output;
    fn show(self) -> Result<Self::Output>;
}

Associated Types

type Output

Loading content...

Required methods

fn show(self) -> Result<Self::Output>

Loading content...

Implementors

impl<'_> Dialog for MessageAlert<'_>[src]

type Output = ()

impl<'_> Dialog for MessageConfirm<'_>[src]

type Output = bool

impl<'_> Dialog for OpenMultipleFile<'_>[src]

type Output = Vec<String>

impl<'_> Dialog for OpenSingleDir<'_>[src]

type Output = Option<String>

impl<'_> Dialog for OpenSingleFile<'_>[src]

type Output = Option<String>

Loading content...