logo
pub trait ViewTitleExt: '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 ViewTitle methods.

Implementors

ViewTitle

Required Methods

Implementors