pub trait SaveDelegateExt: 'static {
Show 17 methods // Required methods fn icon(&self) -> Option<Icon>; fn icon_name(&self) -> Option<GString>; fn progress(&self) -> f64; fn subtitle(&self) -> Option<GString>; fn title(&self) -> Option<GString>; fn save_async<P: FnOnce(Result<(), Error>) + 'static>( &self, cancellable: Option<&impl IsA<Cancellable>>, callback: P ); fn save_future( &self ) -> Pin<Box_<dyn Future<Output = Result<(), Error>> + 'static>>; fn set_icon(&self, icon: Option<&impl IsA<Icon>>); fn set_icon_name(&self, icon: Option<&str>); fn set_progress(&self, progress: f64); fn set_subtitle(&self, subtitle: Option<&str>); fn set_title(&self, title: Option<&str>); fn connect_icon_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_icon_name_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_progress_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_title_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId;
}

Required Methods§

source

fn icon(&self) -> Option<Icon>

source

fn icon_name(&self) -> Option<GString>

source

fn progress(&self) -> f64

source

fn subtitle(&self) -> Option<GString>

source

fn title(&self) -> Option<GString>

source

fn save_async<P: FnOnce(Result<(), Error>) + 'static>( &self, cancellable: Option<&impl IsA<Cancellable>>, callback: P )

source

fn save_future( &self ) -> Pin<Box_<dyn Future<Output = Result<(), Error>> + 'static>>

source

fn set_icon(&self, icon: Option<&impl IsA<Icon>>)

source

fn set_icon_name(&self, icon: Option<&str>)

source

fn set_progress(&self, progress: f64)

source

fn set_subtitle(&self, subtitle: Option<&str>)

source

fn set_title(&self, title: Option<&str>)

source

fn connect_icon_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_icon_name_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_progress_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Implementors§