Trait libhelium::prelude::ViewAuxExt

source ·
pub trait ViewAuxExt: IsA<ViewAux> + Sealed + 'static {
    // Provided methods
    fn shows_aux(&self) -> bool { ... }
    fn set_show_aux(&self, value: bool) { ... }
    fn connect_show_aux_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all ViewAux methods.

§Implementors

ViewAux

Provided Methods§

source

fn shows_aux(&self) -> bool

source

fn set_show_aux(&self, value: bool)

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<ViewAux>> ViewAuxExt for O