Skip to main content

IShopSellAccountWindowMethods

Trait IShopSellAccountWindowMethods 

Source
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§

Source

fn get_m_count(self) -> i32

get_m_Count() overload

Source

fn set_m_count(self, value: impl Into<i32>)

set_m_Count(i32) overload

Source

fn get_m_total(self) -> i32

get_m_Total() overload

Source

fn set_m_total(self, value: impl Into<i32>)

set_m_Total(i32) overload

Source

fn start(self)

Start() overload

Source

fn update_info(self, item_count: impl Into<i32>, total_value: impl Into<i32>)

UpdateInfo(i32, i32) overload

Source

fn clear_info(self)

ClearInfo() overload

Source

fn close(self)

Close() overload

Source

fn ctor(self)

.ctor() 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: IShopSellAccountWindow> IShopSellAccountWindowMethods for __T

Available on crate feature app-shopsellaccountwindow only.