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§
Sourcefn ctor(self, dish: impl Into<Dish>, selected_units: impl Into<List_1<Unit>>)
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
Sourcefn create_window(self)
fn create_window(self)
CreateWindow() overload
Sourcefn is_opening(self) -> bool
fn is_opening(self) -> bool
IsOpening() overload
Sourcefn is_closing(self) -> bool
fn is_closing(self) -> bool
IsClosing() overload
Sourcefn delete_window(self)
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§
impl<__T: IDishResultDialog> IDishResultDialogMethods for __T
Available on crate feature
app-dishresultdialog only.