Trait libhelium::prelude::ChipExt

source ·
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 { ... }
}
Expand description

Trait containing all Chip methods.

§Implementors

Chip

Provided Methods§

source

fn chip_label(&self) -> GString

source

fn set_chip_label(&self, value: &str)

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<Chip>> ChipExt for O