pub trait IFishingTargetListDataMethods: IFishingTargetListData {
// Provided methods
fn get_id(self) -> Il2CppString { ... }
fn set_id(self, value: impl Into<Il2CppString>) { ... }
fn get_fish_id(self) -> Il2CppString { ... }
fn set_fish_id(self, value: impl Into<Il2CppString>) { ... }
fn get_priority(self) -> i32 { ... }
fn set_priority(self, value: impl Into<i32>) { ... }
fn ctor(self) { ... }
fn on_build(self) { ... }
}Provided Methods§
Sourcefn get_id(self) -> Il2CppString
fn get_id(self) -> Il2CppString
get_ID() overload
Sourcefn set_id(self, value: impl Into<Il2CppString>)
fn set_id(self, value: impl Into<Il2CppString>)
set_ID(::unity::Il2CppString) overload
Sourcefn get_fish_id(self) -> Il2CppString
fn get_fish_id(self) -> Il2CppString
get_FishID() overload
Sourcefn set_fish_id(self, value: impl Into<Il2CppString>)
fn set_fish_id(self, value: impl Into<Il2CppString>)
set_FishID(::unity::Il2CppString) overload
Sourcefn get_priority(self) -> i32
fn get_priority(self) -> i32
get_Priority() overload
Sourcefn set_priority(self, value: impl Into<i32>)
fn set_priority(self, value: impl Into<i32>)
set_Priority(i32) 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: IFishingTargetListData> IFishingTargetListDataMethods for __T
Available on crate feature
app-fishingtargetlistdata only.