pub trait IShopDataMethods: IShopData {
Show 17 methods
// Provided methods
fn get_iid(self) -> Il2CppString { ... }
fn set_iid(self, value: impl Into<Il2CppString>) { ... }
fn get_stock(self) -> i32 { ... }
fn set_stock(self, value: impl Into<i32>) { ... }
fn get_condition(self) -> Il2CppString { ... }
fn set_condition(self, value: impl Into<Il2CppString>) { ... }
fn get_without_prefix(self) -> Il2CppString { ... }
fn get_stock_key(self) -> Il2CppString { ... }
fn set_stock_key(self, value: impl Into<Il2CppString>) { ... }
fn get_purchased_key(self) -> Il2CppString { ... }
fn set_purchased_key(self, value: impl Into<Il2CppString>) { ... }
fn get_purchased(self) -> i32 { ... }
fn set_purchased(self, value: impl Into<i32>) { ... }
fn add_purchased(self, value: impl Into<i32>) { ... }
fn is_condition(self) -> bool { ... }
fn regist_impl(self, name: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_iid(self) -> Il2CppString
fn get_iid(self) -> Il2CppString
get_Iid() overload
Sourcefn set_iid(self, value: impl Into<Il2CppString>)
fn set_iid(self, value: impl Into<Il2CppString>)
set_Iid(::unity::Il2CppString) overload
Sourcefn get_condition(self) -> Il2CppString
fn get_condition(self) -> Il2CppString
get_Condition() overload
Sourcefn set_condition(self, value: impl Into<Il2CppString>)
fn set_condition(self, value: impl Into<Il2CppString>)
set_Condition(::unity::Il2CppString) overload
Sourcefn get_without_prefix(self) -> Il2CppString
fn get_without_prefix(self) -> Il2CppString
GetWithoutPrefix() overload
Sourcefn get_stock_key(self) -> Il2CppString
fn get_stock_key(self) -> Il2CppString
get_StockKey() overload
Sourcefn set_stock_key(self, value: impl Into<Il2CppString>)
fn set_stock_key(self, value: impl Into<Il2CppString>)
set_StockKey(::unity::Il2CppString) overload
Sourcefn get_purchased_key(self) -> Il2CppString
fn get_purchased_key(self) -> Il2CppString
get_PurchasedKey() overload
Sourcefn set_purchased_key(self, value: impl Into<Il2CppString>)
fn set_purchased_key(self, value: impl Into<Il2CppString>)
set_PurchasedKey(::unity::Il2CppString) overload
Sourcefn get_purchased(self) -> i32
fn get_purchased(self) -> i32
GetPurchased() overload
Sourcefn set_purchased(self, value: impl Into<i32>)
fn set_purchased(self, value: impl Into<i32>)
SetPurchased(i32) overload
Sourcefn add_purchased(self, value: impl Into<i32>)
fn add_purchased(self, value: impl Into<i32>)
AddPurchased(i32) overload
Sourcefn is_condition(self) -> bool
fn is_condition(self) -> bool
IsCondition() overload
Sourcefn regist_impl(self, name: impl Into<Il2CppString>)
fn regist_impl(self, name: impl Into<Il2CppString>)
RegistImpl(::unity::Il2CppString) 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: IShopData> IShopDataMethods for __T
Available on crate feature
app-shopdata only.