pub trait TipExt: IsA<Tip> + Sealed + 'static {
// Provided methods
fn title(&self) -> GString { ... }
fn set_title(&self, value: &str) { ... }
fn image(&self) -> GString { ... }
fn set_image(&self, value: &str) { ... }
fn message(&self) -> GString { ... }
fn set_message(&self, value: &str) { ... }
fn action_label(&self) -> GString { ... }
fn set_action_label(&self, value: &str) { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_image_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_message_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_action_label_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
fn title(&self) -> GString
fn set_title(&self, value: &str)
fn image(&self) -> GString
fn set_image(&self, value: &str)
fn message(&self) -> GString
fn set_message(&self, value: &str)
fn action_label(&self) -> GString
fn set_action_label(&self, value: &str)
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_image_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_message_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_action_label_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.