Skip to main content

IShopContent

Trait IShopContent 

Source
pub trait IShopContent: IObject {
    // Provided methods
    fn m_iid(self) -> Il2CppString { ... }
    fn set_m_iid(self, value: Il2CppString) { ... }
    fn m_stock_num(self) -> i32 { ... }
    fn set_m_stock_num(self, value: i32) { ... }
    fn m_new_arrival(self) -> bool { ... }
    fn set_m_new_arrival(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_iid(self) -> Il2CppString

Source

fn set_m_iid(self, value: Il2CppString)

Source

fn m_stock_num(self) -> i32

Source

fn set_m_stock_num(self, value: i32)

Source

fn m_new_arrival(self) -> bool

Source

fn set_m_new_arrival(self, value: bool)

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§