Skip to main content

IWellItemSelectMenu_SelectedItemMethods

Trait IWellItemSelectMenu_SelectedItemMethods 

Source
pub trait IWellItemSelectMenu_SelectedItemMethods: IWellItemSelectMenu_SelectedItem {
    // Provided methods
    fn ctor(
        self,
        unit: impl Into<Unit>,
        owner_item_index: impl Into<i32>,
        menu_item: impl Into<WellItemSelectMenuItem>,
    ) { ... }
    fn is_same(
        self,
        unit: impl Into<Unit>,
        owner_item_index: impl Into<i32>,
    ) -> bool { ... }
    fn get_original_menu_item(self) -> WellItemSelectMenuItem { ... }
}

Provided Methods§

Source

fn ctor( self, unit: impl Into<Unit>, owner_item_index: impl Into<i32>, menu_item: impl Into<WellItemSelectMenuItem>, )

.ctor(crate::app::unit::Unit, i32, crate::app::wellitemselectmenuitem::WellItemSelectMenuItem) overload

Source

fn is_same( self, unit: impl Into<Unit>, owner_item_index: impl Into<i32>, ) -> bool

IsSame(crate::app::unit::Unit, i32) overload

Source

fn get_original_menu_item(self) -> WellItemSelectMenuItem

get_OriginalMenuItem() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IWellItemSelectMenu_SelectedItem> IWellItemSelectMenu_SelectedItemMethods for __T

Available on crate feature app-wellitemselectmenu only.