pub trait DefaultPathDialogBuilder {
    fn default_path<'a, P: AsRef<Path>>(
        &'a mut self,
        path: &P
    ) -> Result<&'a mut Self, Error>; }

Required Methods

Implementors