Skip to main content

IDishResultDialogMethods

Trait IDishResultDialogMethods 

Source
pub trait IDishResultDialogMethods: IDishResultDialog {
    // Provided methods
    fn ctor(
        self,
        dish: impl Into<Dish>,
        selected_units: impl Into<List_1<Unit>>,
    ) { ... }
    fn create_window(self) { ... }
    fn is_opening(self) -> bool { ... }
    fn tick(self) { ... }
    fn is_closing(self) -> bool { ... }
    fn delete_window(self) { ... }
}

Provided Methods§

Source

fn ctor(self, dish: impl Into<Dish>, selected_units: impl Into<List_1<Unit>>)

.ctor(crate::app::dish::Dish, crate::system::collections::generic::list_1::List_1<crate::app::unit::Unit>) overload

Source

fn create_window(self)

CreateWindow() overload

Source

fn is_opening(self) -> bool

IsOpening() overload

Source

fn tick(self)

Tick() overload

Source

fn is_closing(self) -> bool

IsClosing() overload

Source

fn delete_window(self)

DeleteWindow() 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: IDishResultDialog> IDishResultDialogMethods for __T

Available on crate feature app-dishresultdialog only.