pub struct ContentTuningRow {Show 19 fields
pub ID: i32,
pub Flags: i32,
pub ExpansionID: i32,
pub HPScalingCurveID: i32,
pub DMGScalingCurveID: i32,
pub HPPrimaryStatScalingCurveID: i32,
pub DMGPrimaryStatScalingCurveID: i32,
pub PrimaryStatScalingModPlayerDataElementCharacterID: i32,
pub PrimaryStatScalingModPlayerDataElementCharacterMultiplier: f32,
pub MinLevelSquish: i32,
pub MaxLevelSquish: i32,
pub MinLevelScalingOffset: i32,
pub MaxLevelScalingOffset: i32,
pub AllowedMinOffset: i32,
pub AllowedMaxOffset: i32,
pub LfgMinLevel: i32,
pub LfgMaxLevel: i32,
pub ILevel: i32,
pub XpMultQuest: f32,
}Expand description
DBC row from ContentTuning.db2: expansion, level bounds, and scaling-curve IDs.
Fields§
§ID: i32§Flags: i32§ExpansionID: i32§HPScalingCurveID: i32§DMGScalingCurveID: i32§HPPrimaryStatScalingCurveID: i32§DMGPrimaryStatScalingCurveID: i32§PrimaryStatScalingModPlayerDataElementCharacterID: i32§PrimaryStatScalingModPlayerDataElementCharacterMultiplier: f32§MinLevelSquish: i32§MaxLevelSquish: i32§MinLevelScalingOffset: i32§MaxLevelScalingOffset: i32§AllowedMinOffset: i32§AllowedMaxOffset: i32§LfgMinLevel: i32§LfgMaxLevel: i32§ILevel: i32§XpMultQuest: f32Trait Implementations§
Source§impl Clone for ContentTuningRow
impl Clone for ContentTuningRow
Source§fn clone(&self) -> ContentTuningRow
fn clone(&self) -> ContentTuningRow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContentTuningRow
impl Debug for ContentTuningRow
Source§impl<'de> Deserialize<'de> for ContentTuningRow
impl<'de> Deserialize<'de> for ContentTuningRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContentTuningRow
impl RefUnwindSafe for ContentTuningRow
impl Send for ContentTuningRow
impl Sync for ContentTuningRow
impl Unpin for ContentTuningRow
impl UnsafeUnpin for ContentTuningRow
impl UnwindSafe for ContentTuningRow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more