pub trait NativeDialogExtManual: Sealed + IsA<NativeDialog> {
// Provided methods
fn run_future<'a>(
&'a self,
) -> Pin<Box<dyn Future<Output = ResponseType> + 'a>> { ... }
fn run_async<F: FnOnce(&Self, ResponseType) + 'static>(&self, f: F) { ... }
}
👎Deprecated: Since 4.10
Expand description
Trait containing manually implemented methods of
NativeDialog
.
Provided Methods§
Sourcefn run_future<'a>(&'a self) -> Pin<Box<dyn Future<Output = ResponseType> + 'a>>
👎Deprecated: Since 4.10
fn run_future<'a>(&'a self) -> Pin<Box<dyn Future<Output = ResponseType> + 'a>>
Shows the dialog and returns a Future
that resolves to the
ResponseType
on response.
use gtk::prelude::*;
let dialog = gtk::FileChooserNative::builder()
.title("Select a File")
.build();
dialog.run_future().await;
println!("Selected file: {:?}", dialog.file());
dialog.destroy();
Sourcefn run_async<F: FnOnce(&Self, ResponseType) + 'static>(&self, f: F)
👎Deprecated: Since 4.10
fn run_async<F: FnOnce(&Self, ResponseType) + 'static>(&self, f: F)
Shows the dialog and calls the callback when a response has been received.
Important: this function isn’t blocking.
use gtk::prelude::*;
let dialog = gtk::FileChooserNative::builder()
.title("Select a File")
.build();
dialog.run_async(move |obj, answer| {
obj.destroy();
println!("Selected file: {:?}", obj.file());
});
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.