pub trait ImportExportDialogBaseImpl: DialogImpl + 'static {
    // Provided methods
    fn on_activities(
        &self,
        obj: &ImportExportDialogBase,
        password: Option<String>
    ) -> PinnedResultFuture<()> { ... }
    fn on_weights(
        &self,
        obj: &ImportExportDialogBase,
        password: Option<String>
    ) -> PinnedResultFuture<()> { ... }
}

Provided Methods§

source

fn on_activities( &self, obj: &ImportExportDialogBase, password: Option<String> ) -> PinnedResultFuture<()>

source

fn on_weights( &self, obj: &ImportExportDialogBase, password: Option<String> ) -> PinnedResultFuture<()>

Implementors§