pub trait IShopSellAccountWindowMethods: IShopSellAccountWindow {
// Provided methods
fn get_m_count(self) -> i32 { ... }
fn set_m_count(self, value: impl Into<i32>) { ... }
fn get_m_total(self) -> i32 { ... }
fn set_m_total(self, value: impl Into<i32>) { ... }
fn start(self) { ... }
fn update_info(
self,
item_count: impl Into<i32>,
total_value: impl Into<i32>,
) { ... }
fn clear_info(self) { ... }
fn close(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_m_count(self) -> i32
fn get_m_count(self) -> i32
get_m_Count() overload
Sourcefn set_m_count(self, value: impl Into<i32>)
fn set_m_count(self, value: impl Into<i32>)
set_m_Count(i32) overload
Sourcefn get_m_total(self) -> i32
fn get_m_total(self) -> i32
get_m_Total() overload
Sourcefn set_m_total(self, value: impl Into<i32>)
fn set_m_total(self, value: impl Into<i32>)
set_m_Total(i32) overload
Sourcefn update_info(self, item_count: impl Into<i32>, total_value: impl Into<i32>)
fn update_info(self, item_count: impl Into<i32>, total_value: impl Into<i32>)
UpdateInfo(i32, i32) overload
Sourcefn clear_info(self)
fn clear_info(self)
ClearInfo() 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: IShopSellAccountWindow> IShopSellAccountWindowMethods for __T
Available on crate feature
app-shopsellaccountwindow only.