pub trait IFishingSizeTableDataMethods: IFishingSizeTableData {
Show 14 methods
// Provided methods
fn get_id(self) -> Il2CppString { ... }
fn set_id(self, value: impl Into<Il2CppString>) { ... }
fn get_size_name(self) -> Il2CppString { ... }
fn set_size_name(self, value: impl Into<Il2CppString>) { ... }
fn get_size_minimum(self) -> f32 { ... }
fn set_size_minimum(self, value: impl Into<f32>) { ... }
fn get_size_maximum(self) -> f32 { ... }
fn set_size_maximum(self, value: impl Into<f32>) { ... }
fn get_bonus_minimum(self) -> f32 { ... }
fn set_bonus_minimum(self, value: impl Into<f32>) { ... }
fn get_bonus_maximum(self) -> f32 { ... }
fn set_bonus_maximum(self, value: impl Into<f32>) { ... }
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_size_name(self) -> Il2CppString
fn get_size_name(self) -> Il2CppString
get_SizeName() overload
Sourcefn set_size_name(self, value: impl Into<Il2CppString>)
fn set_size_name(self, value: impl Into<Il2CppString>)
set_SizeName(::unity::Il2CppString) overload
Sourcefn get_size_minimum(self) -> f32
fn get_size_minimum(self) -> f32
get_SizeMinimum() overload
Sourcefn set_size_minimum(self, value: impl Into<f32>)
fn set_size_minimum(self, value: impl Into<f32>)
set_SizeMinimum(f32) overload
Sourcefn get_size_maximum(self) -> f32
fn get_size_maximum(self) -> f32
get_SizeMaximum() overload
Sourcefn set_size_maximum(self, value: impl Into<f32>)
fn set_size_maximum(self, value: impl Into<f32>)
set_SizeMaximum(f32) overload
Sourcefn get_bonus_minimum(self) -> f32
fn get_bonus_minimum(self) -> f32
get_BonusMinimum() overload
Sourcefn set_bonus_minimum(self, value: impl Into<f32>)
fn set_bonus_minimum(self, value: impl Into<f32>)
set_BonusMinimum(f32) overload
Sourcefn get_bonus_maximum(self) -> f32
fn get_bonus_maximum(self) -> f32
get_BonusMaximum() overload
Sourcefn set_bonus_maximum(self, value: impl Into<f32>)
fn set_bonus_maximum(self, value: impl Into<f32>)
set_BonusMaximum(f32) 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: IFishingSizeTableData> IFishingSizeTableDataMethods for __T
Available on crate feature
app-fishingsizetabledata only.