pub trait GutterRendererPixbufExt: IsA<GutterRendererPixbuf> + Sealed + 'static {
Show 13 methods // Provided methods fn gicon(&self) -> Icon { ... } fn icon_name(&self) -> GString { ... } fn paintable(&self) -> Option<Paintable> { ... } fn pixbuf(&self) -> Pixbuf { ... } fn overlay_paintable(&self, paintable: &impl IsA<Paintable>) { ... } fn set_gicon(&self, icon: Option<&impl IsA<Icon>>) { ... } fn set_icon_name(&self, icon_name: Option<&str>) { ... } fn set_paintable(&self, paintable: Option<&impl IsA<Paintable>>) { ... } fn set_pixbuf(&self, pixbuf: Option<&Pixbuf>) { ... } fn connect_gicon_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_icon_name_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_paintable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_pixbuf_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn gicon(&self) -> Icon

source

fn icon_name(&self) -> GString

source

fn paintable(&self) -> Option<Paintable>

source

fn pixbuf(&self) -> Pixbuf

source

fn overlay_paintable(&self, paintable: &impl IsA<Paintable>)

source

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

source

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

source

fn set_paintable(&self, paintable: Option<&impl IsA<Paintable>>)

source

fn set_pixbuf(&self, pixbuf: Option<&Pixbuf>)

source

fn connect_gicon_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_paintable_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

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

Object Safety§

This trait is not object safe.

Implementors§