Trait gio::prelude::MenuModelExt

source ·
pub trait MenuModelExt: IsA<MenuModel> + Sealed + 'static {
    // Provided methods
    fn item_attribute_value(
        &self,
        item_index: i32,
        attribute: &str,
        expected_type: Option<&VariantTy>
    ) -> Option<Variant> { ... }
    fn item_link(&self, item_index: i32, link: &str) -> Option<MenuModel> { ... }
    fn n_items(&self) -> i32 { ... }
    fn is_mutable(&self) -> bool { ... }
    fn items_changed(&self, position: i32, removed: i32, added: i32) { ... }
    fn iterate_item_attributes(&self, item_index: i32) -> MenuAttributeIter { ... }
    fn iterate_item_links(&self, item_index: i32) -> MenuLinkIter { ... }
    fn connect_items_changed<F: Fn(&Self, i32, i32, i32) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn item_attribute_value( &self, item_index: i32, attribute: &str, expected_type: Option<&VariantTy> ) -> Option<Variant>

source

fn n_items(&self) -> i32

source

fn is_mutable(&self) -> bool

source

fn items_changed(&self, position: i32, removed: i32, added: i32)

source

fn iterate_item_attributes(&self, item_index: i32) -> MenuAttributeIter

source

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

Object Safety§

This trait is not object safe.

Implementors§