logo
pub trait ViewSubTitleExt: 'static {
    fn label(&self) -> Option<GString>;
    fn set_label(&self, value: Option<&str>);
    fn connect_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all ViewSubTitle methods.

Implementors

ViewSubTitle

Required Methods

Implementors