Trait gio::MenuItemExt[][src]

pub trait MenuItemExt {
    fn set_action_and_target_value<'a, 'b, P: Into<Option<&'a str>>, Q: Into<Option<&'b Variant>>>(
        &self,
        action: P,
        target_value: Q
    );
fn set_attribute_value<'a, P: Into<Option<&'a Variant>>>(
        &self,
        attribute: &str,
        value: P
    );
fn set_detailed_action(&self, detailed_action: &str);
fn set_label<'a, P: Into<Option<&'a str>>>(&self, label: P);
fn set_link<'a, P: IsA<MenuModel> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        link: &str,
        model: Q
    );
fn set_section<'a, P: IsA<MenuModel> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        section: Q
    );
fn set_submenu<'a, P: IsA<MenuModel> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        submenu: Q
    ); }

Required Methods

Implementors