pub trait IBelongDataMethods: IBelongData {
// Provided methods
fn get_bid(self) -> Il2CppString { ... }
fn set_bid(self, value: impl Into<Il2CppString>) { ... }
fn get_name(self) -> Il2CppString { ... }
fn set_name(self, value: impl Into<Il2CppString>) { ... }
fn get_defeat_achieve(self) -> AchieveData_Kinds { ... }
fn set_defeat_achieve(self, value: impl Into<AchieveData_Kinds>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_bid(self) -> Il2CppString
fn get_bid(self) -> Il2CppString
get_Bid() overload
Sourcefn set_bid(self, value: impl Into<Il2CppString>)
fn set_bid(self, value: impl Into<Il2CppString>)
set_Bid(::unity::Il2CppString) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn set_name(self, value: impl Into<Il2CppString>)
fn set_name(self, value: impl Into<Il2CppString>)
set_Name(::unity::Il2CppString) overload
Sourcefn get_defeat_achieve(self) -> AchieveData_Kinds
fn get_defeat_achieve(self) -> AchieveData_Kinds
get_DefeatAchieve() overload
Sourcefn set_defeat_achieve(self, value: impl Into<AchieveData_Kinds>)
fn set_defeat_achieve(self, value: impl Into<AchieveData_Kinds>)
set_DefeatAchieve(crate::app::achievedata::AchieveData_Kinds) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IBelongData> IBelongDataMethods for __T
Available on crate feature
app-belongdata only.