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§
Sourcefn compare_both_like(
self,
x: impl Into<DishSelectMenu_DishSelectMenuItem>,
y: impl Into<DishSelectMenu_DishSelectMenuItem>,
) -> i32
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
Sourcefn compare_difficulty(
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
CompareDifficulty(crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem) overload
Sourcefn compare_dislike(
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
CompareDislike(crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem, crate::app::cooking_menu::dishselectmenu::DishSelectMenu_DishSelectMenuItem) overload
Sourcefn compare_index(
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
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§
impl<__T: IDishSelectMenu_DishMenuCompare> IDishSelectMenu_DishMenuCompareMethods for __T
app-cooking_menu-dishselectmenu only.