pub trait ChipExt: IsA<Chip> + Sealed + 'static {
// Provided methods
fn chip_label(&self) -> GString { ... }
fn set_chip_label(&self, value: &str) { ... }
fn connect_chip_label_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
fn chip_label(&self) -> GString
fn set_chip_label(&self, value: &str)
fn connect_chip_label_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.