Skip to main content

IDishSelectMenu_DishMenuCompareMethods

Trait IDishSelectMenu_DishMenuCompareMethods 

Source
pub trait IDishSelectMenu_DishMenuCompareMethods: IDishSelectMenu_DishMenuCompare {
    // Provided methods
    fn ctor(self, is_recommended: impl Into<bool>) { ... }
    fn compare_both_like(
        self,
        x: impl Into<DishSelectMenu_DishSelectMenuItem>,
        y: impl Into<DishSelectMenu_DishSelectMenuItem>,
    ) -> i32 { ... }
    fn compare_difficulty(
        self,
        x: impl Into<DishSelectMenu_DishSelectMenuItem>,
        y: impl Into<DishSelectMenu_DishSelectMenuItem>,
    ) -> i32 { ... }
    fn compare_dislike(
        self,
        x: impl Into<DishSelectMenu_DishSelectMenuItem>,
        y: impl Into<DishSelectMenu_DishSelectMenuItem>,
    ) -> i32 { ... }
    fn compare_index(
        self,
        x: impl Into<DishSelectMenu_DishSelectMenuItem>,
        y: impl Into<DishSelectMenu_DishSelectMenuItem>,
    ) -> i32 { ... }
}

Provided Methods§

Source

fn ctor(self, is_recommended: impl Into<bool>)

.ctor(bool) overload

Source

fn compare_both_like( self, x: impl Into<DishSelectMenu_DishSelectMenuItem>, y: impl Into<DishSelectMenu_DishSelectMenuItem>, ) -> i32

CompareBothLike(crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem) overload

Source

fn compare_difficulty( self, x: impl Into<DishSelectMenu_DishSelectMenuItem>, y: impl Into<DishSelectMenu_DishSelectMenuItem>, ) -> i32

CompareDifficulty(crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem) overload

Source

fn compare_dislike( self, x: impl Into<DishSelectMenu_DishSelectMenuItem>, y: impl Into<DishSelectMenu_DishSelectMenuItem>, ) -> i32

CompareDislike(crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem) overload

Source

fn compare_index( self, x: impl Into<DishSelectMenu_DishSelectMenuItem>, y: impl Into<DishSelectMenu_DishSelectMenuItem>, ) -> i32

CompareIndex(crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem) 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: IDishSelectMenu_DishMenuCompare> IDishSelectMenu_DishMenuCompareMethods for __T

Available on crate feature app-cooking_menu-dishselectmenu only.