pub trait IFishingDisposPatternDataMethods: IFishingDisposPatternData {
Show 14 methods
// Provided methods
fn get_id(self) -> Il2CppString { ... }
fn set_id(self, value: impl Into<Il2CppString>) { ... }
fn get_stick_type(self) -> Il2CppString { ... }
fn set_stick_type(self, value: impl Into<Il2CppString>) { ... }
fn get_time(self) -> i32 { ... }
fn set_time(self, value: impl Into<i32>) { ... }
fn get_position_num(self) -> i32 { ... }
fn set_position_num(self, value: impl Into<i32>) { ... }
fn get_lottery_param(self) -> i32 { ... }
fn set_lottery_param(self, value: impl Into<i32>) { ... }
fn get_fish_id(self) -> Il2CppString { ... }
fn set_fish_id(self, value: impl Into<Il2CppString>) { ... }
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_stick_type(self) -> Il2CppString
fn get_stick_type(self) -> Il2CppString
get_StickType() overload
Sourcefn set_stick_type(self, value: impl Into<Il2CppString>)
fn set_stick_type(self, value: impl Into<Il2CppString>)
set_StickType(::unity::Il2CppString) overload
Sourcefn get_position_num(self) -> i32
fn get_position_num(self) -> i32
get_PositionNum() overload
Sourcefn set_position_num(self, value: impl Into<i32>)
fn set_position_num(self, value: impl Into<i32>)
set_PositionNum(i32) overload
Sourcefn get_lottery_param(self) -> i32
fn get_lottery_param(self) -> i32
get_LotteryParam() overload
Sourcefn set_lottery_param(self, value: impl Into<i32>)
fn set_lottery_param(self, value: impl Into<i32>)
set_LotteryParam(i32) 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
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: IFishingDisposPatternData> IFishingDisposPatternDataMethods for __T
Available on crate feature
app-fishingdispospatterndata only.